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 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845
|
<Type Name="XmlReader" FullName="System.Xml.XmlReader" FullNameSP="System_Xml_XmlReader" Maintainer="ecma">
<TypeSignature Language="ILASM" Value=".class public abstract XmlReader extends System.Object" />
<TypeSignature Language="C#" Value="public abstract class XmlReader : IDisposable" />
<MemberOfLibrary>XML</MemberOfLibrary>
<AssemblyInfo>
<AssemblyName>System.Xml</AssemblyName>
<AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ]</AssemblyPublicKey>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ThreadingSafetyStatement>All public static members of this type are safe for multithreaded operations. No instance members are guaranteed to be thread safe.</ThreadingSafetyStatement>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName>System.Reflection.DefaultMember("Item")</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>
<para> Represents a reader that provides non-cached, forward-only access
to XML data.</para>
</summary>
<remarks>
<para> This class provides forward-only,
read-only access to a stream of XML data. This class enforces the rules of
well-formed XML but does not perform data validation.</para>
<para> This class conforms to the W3C Extensible Markup
Language (XML) 1.0 and the Namespaces
in XML recommendations. </para>
<para> A given set of
XML data is modeled as a tree of nodes. The different types of
nodes are specified in the <see cref="T:System.Xml.XmlNodeType" qualify="true" /> enumeration. The reader is advanced to the next node
using the <see cref="M:System.Xml.XmlReader.Read" /> method.
The current node refers to the node on which the reader
is positioned. The following table lists the node properties exposed for the
current
node. </para>
<list type="table">
<listheader>
<term>Property</term>
<description>Description</description>
</listheader>
<item>
<term> AttributeCount</term>
<description> The
number of attributes on the
node.</description>
</item>
<item>
<term> BaseUri</term>
<description>The
base URI of
the node.</description>
</item>
<item>
<term> Depth</term>
<description>The
depth of the
node in the tree.</description>
</item>
<item>
<term> HasAttributes</term>
<description>Whether the node has attributes.</description>
</item>
<item>
<term> HasValue</term>
<description>Whether the node can have a text value.</description>
</item>
<item>
<term> IsDefault</term>
<description>Whether an <see langword="Attribute" /> node was
generated from the default value defined in the DTD or schema.</description>
</item>
<item>
<term> IsEmptyElement</term>
<description>Whether an <see langword="Element" /> node is empty.</description>
</item>
<item>
<term> LocalName</term>
<description>The local name of the node.</description>
</item>
<item>
<term> Name</term>
<description>The
qualified name of the node, equal to
<see langword="Prefix" />:<see langword="LocalName" />.</description>
</item>
<item>
<term> NamespaceUri</term>
<description>The
URI defining the namespace associated with the node.</description>
</item>
<item>
<term> NodeType</term>
<description>The <see cref="T:System.Xml.XmlNodeType" qualify="true" /> of the
node.</description>
</item>
<item>
<term> Prefix</term>
<description>A
shorthand reference to the namespace associated with the node.</description>
</item>
<item>
<term> QuoteChar</term>
<description>The
quotation mark character used to enclose the value of an
attribute.</description>
</item>
<item>
<term> Value</term>
<description>The
text value of the node.</description>
</item>
<item>
<term> XmlLang</term>
<description>The
<c>xml:lang</c> scope within which the node
resides.</description>
</item>
</list>
<para> This class does not expand default attributes or general
entities. Any general entities encountered are returned as a single empty
<see langword="EntityReference" /> node. </para>
<para>This class checks that a Document Type Definition (DTD) is well-formed, but does not validate using the
DTD.</para>
<para>To read strongly typed data, use the <see cref="T:System.Xml.XmlConvert" /> class. </para>
<para>This class throws a <see cref="T:System.Xml.XmlException" /> on XML parse errors.
After an exception is thrown, the state of the reader is not predictable. For
example, the reported node type may be different than the actual node type of
the current node.</para>
<block subset="none" type="note">
<para>This class is <see langword="abstract" /> and implemented in the <see cref="T:System.Xml.XmlTextReader" />
class.</para>
</block>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="ILASM" Value="family specialname instance void .ctor()" />
<MemberSignature Language="C#" Value="protected XmlReader ();" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters />
<Docs>
<summary>Constructs a new instance of the <see cref="T:System.Xml.XmlReader" /> class.</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="AttributeCount">
<MemberSignature Language="ILASM" Value=".property int32 AttributeCount { public hidebysig virtual abstract specialname int32 get_AttributeCount() }" />
<MemberSignature Language="C#" Value="public abstract int AttributeCount { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets the number of attributes on the current node.</para>
</summary>
<value>
<para> A <see cref="T:System.Int32" qualify="true" /> containing the
number of attributes on the current node, or zero if the current node does not support attributes.</para>
</value>
<remarks>
<para>
<block subset="none" type="note">
This property is only relevant to the <see langword="DocumentType" />,
<see langword="Element" />, and <see langword="XmlDeclaration" /> node types of the
<see cref="T:System.Xml.XmlNodeType" />
enumeration. Other node types do not have attributes.
</block>
</para>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="BaseURI">
<MemberSignature Language="ILASM" Value=".property string BaseURI { public hidebysig virtual abstract specialname string get_BaseURI() }" />
<MemberSignature Language="C#" Value="public abstract string BaseURI { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets the base Uniform Resource Identifier (URI) of the current node. </para>
</summary>
<value>
<para>The base URI of the current node.</para>
</value>
<remarks>
<para>
<block subset="none" type="note"> A networked XML document is comprised of chunks of
data aggregated using various W3C standard inclusion mechanisms and
therefore contains nodes that come from different places. DTD entities are an example
of this, but this is not limited to DTDs. The base URI tells where these nodes
come from. If there is no base URI for the nodes being returned (for example,
they were parsed from an in-memory string), <see cref="F:System.String.Empty" qualify="true" />
is returned.
</block>
</para>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CanReadBinaryContent">
<MemberSignature Language="C#" Value="public virtual bool CanReadBinaryContent { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CanReadValueChunk">
<MemberSignature Language="C#" Value="public virtual bool CanReadValueChunk { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CanResolveEntity">
<MemberSignature Language="ILASM" Value=".property bool CanResolveEntity { public hidebysig virtual specialname bool get_CanResolveEntity() }" />
<MemberSignature Language="C#" Value="public virtual bool CanResolveEntity { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets a value indicating whether this reader can parse
and resolve entities.</para>
</summary>
<value>
<para>A <see cref="T:System.Boolean" qualify="true" />
equal to <see langword="false" />.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>This property
returns <see langword="true" /> to indicate the reader can parse and resolve
entities; otherwise, <see langword=" false" />.</para>
<para>This property is
read-only.</para>
</block>
<para>
<block subset="none" type="default"> This property
always returns <see langword=" false" />. </block>
</para>
<para>
<block subset="none" type="overrides">Override this property
to return <see langword="true" /> for
implementations that support schema or
DTD information.</block>
</para>
<para>
<block subset="none" type="usage"> Use this
property to determine whether the reader can parse and resolve entities.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Close">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract void Close()" />
<MemberSignature Language="C#" Value="public abstract void Close ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Changes the <see cref="P:System.Xml.XmlReader.ReadState" /> to <see cref="F:System.Xml.ReadState.Closed" />.</para>
</summary>
<remarks>
<para>
<block subset="none" type="behaviors"> This method
releases any resources allocated by the current instance, changes the <see cref="P:System.Xml.XmlReader.ReadState" />
to <see cref="F:System.Xml.ReadState.Closed" qualify="true" />, and calls the <see langword="Close" />
method of any underlying <see cref="T:System.IO.Stream" qualify="true" /> or <see cref="T:System.IO.TextReader" qualify="true" /> instance.
</block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.IO.Stream stream);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="stream" Type="System.IO.Stream" />
</Parameters>
<Docs>
<param name="stream">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.IO.TextReader reader);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="reader" Type="System.IO.TextReader" />
</Parameters>
<Docs>
<param name="reader">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (string url);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="url" Type="System.String" />
</Parameters>
<Docs>
<param name="url">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.IO.Stream stream, System.Xml.XmlReaderSettings settings);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="stream" Type="System.IO.Stream" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
</Parameters>
<Docs>
<param name="stream">To be added.</param>
<param name="settings">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.IO.TextReader reader, System.Xml.XmlReaderSettings settings);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="reader" Type="System.IO.TextReader" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
</Parameters>
<Docs>
<param name="reader">To be added.</param>
<param name="settings">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (string url, System.Xml.XmlReaderSettings settings);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="url" Type="System.String" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
</Parameters>
<Docs>
<param name="url">To be added.</param>
<param name="settings">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.Xml.XmlReader reader, System.Xml.XmlReaderSettings settings);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="reader" Type="System.Xml.XmlReader" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
</Parameters>
<Docs>
<param name="reader">To be added.</param>
<param name="settings">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.IO.Stream stream, System.Xml.XmlReaderSettings settings, string baseUri);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="stream" Type="System.IO.Stream" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
<Parameter Name="baseUri" Type="System.String" />
</Parameters>
<Docs>
<param name="stream">To be added.</param>
<param name="settings">To be added.</param>
<param name="baseUri">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.IO.Stream stream, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext context);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="stream" Type="System.IO.Stream" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
<Parameter Name="context" Type="System.Xml.XmlParserContext" />
</Parameters>
<Docs>
<param name="stream">To be added.</param>
<param name="settings">To be added.</param>
<param name="context">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.IO.TextReader reader, System.Xml.XmlReaderSettings settings, string baseUri);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="reader" Type="System.IO.TextReader" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
<Parameter Name="baseUri" Type="System.String" />
</Parameters>
<Docs>
<param name="reader">To be added.</param>
<param name="settings">To be added.</param>
<param name="baseUri">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (System.IO.TextReader reader, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext context);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="reader" Type="System.IO.TextReader" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
<Parameter Name="context" Type="System.Xml.XmlParserContext" />
</Parameters>
<Docs>
<param name="reader">To be added.</param>
<param name="settings">To be added.</param>
<param name="context">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static System.Xml.XmlReader Create (string url, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext context);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="url" Type="System.String" />
<Parameter Name="settings" Type="System.Xml.XmlReaderSettings" />
<Parameter Name="context" Type="System.Xml.XmlParserContext" />
</Parameters>
<Docs>
<param name="url">To be added.</param>
<param name="settings">To be added.</param>
<param name="context">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Depth">
<MemberSignature Language="ILASM" Value=".property int32 Depth { public hidebysig virtual abstract specialname int32 get_Depth() }" />
<MemberSignature Language="C#" Value="public abstract int Depth { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets the depth of
the current node in the XML document.
</para>
</summary>
<value>
<para>A <see cref="T:System.Int32" qualify="true" />
containing the depth of the current node in the XML document. </para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Dispose">
<MemberSignature Language="C#" Value="protected virtual void Dispose (bool disposing);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="disposing" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="disposing">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EOF">
<MemberSignature Language="ILASM" Value=".property bool EOF { public hidebysig virtual abstract specialname bool get_EOF() }" />
<MemberSignature Language="C#" Value="public abstract bool EOF { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets a value indicating whether the <see cref="P:System.Xml.XmlReader.ReadState" />
is <see cref="F:System.Xml.ReadState.EndOfFile" qualify="true" />, signifying the reader is positioned at the end of the
stream.</para>
</summary>
<value>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the reader is positioned at the end
of the stream; otherwise, <see langword="false" />. </para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract string GetAttribute(int32 i)" />
<MemberSignature Language="C#" Value="public abstract string GetAttribute (int i);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="i" Type="System.Int32" />
</Parameters>
<Docs>
<param name="i">A <see cref="T:System.Int32" qualify="true" /> specifying the zero-based index of the attribute relative to the containing element.</param>
<summary>
<para>Returns the value of the attribute with the specified index relative to the containing element.</para>
</summary>
<returns>
<para>A <see cref="T:System.String" qualify="true" />
containing the value of the specified attribute.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> This method does not move the
reader. </block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="i" /> is less than 0, or greater than or equal to the <see cref="P:System.Xml.XmlReader.AttributeCount" /> of the containing element.</exception>
<example>
<para>For an example demonstrating this method, see <see cref="M:System.Xml.XmlTextReader.GetAttribute(System.Int32)" />(<see cref="T:System.String" />, <see cref="T:System.String" />).</para>
</example>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract string GetAttribute(string name)" />
<MemberSignature Language="C#" Value="public abstract string GetAttribute (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of the attribute.</param>
<summary>
<para>Returns the value of the attribute with the specified qualified name.</para>
</summary>
<returns>
<para>A <see cref="T:System.String" qualify="true" />
containing the value of the specified attribute, or <see langword="null" /> if the
attribute is not found.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> This method does not move the
reader. </block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
<example>
<para>For an example demonstrating this method, see <see cref="M:System.Xml.XmlTextReader.GetAttribute(System.Int32)" />(<see cref="T:System.String" />, <see cref="T:System.String" />).</para>
</example>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract string GetAttribute(string name, string namespaceURI)" />
<MemberSignature Language="C#" Value="public abstract string GetAttribute (string localName, string namespaceName);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceName" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the local name of the attribute.</param>
<param name="namespaceURI">A <see cref="T:System.String" qualify="true" /> specifying the namespace URI of the attribute.</param>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
<summary>
<para>Returns the value of the attribute with the specified local
name and namespace URI.</para>
</summary>
<returns>
<para>A <see cref="T:System.String" qualify="true" />
containing the value of the specified attribute, or <see langword="null" /> if the
attribute is not found.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> This method does not move the
reader. </block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
<example>
<para>For an example demonstrating this method, see <see cref="M:System.Xml.XmlTextReader.GetAttribute(System.Int32)" />(<see cref="T:System.String" />, <see cref="T:System.String" />).</para>
</example>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HasAttributes">
<MemberSignature Language="ILASM" Value=".property bool HasAttributes { public hidebysig virtual specialname bool get_HasAttributes() }" />
<MemberSignature Language="C#" Value="public virtual bool HasAttributes { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets a value indicating whether the current node has any attributes.</para>
</summary>
<value>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the current node has attributes; otherwise,
<see langword="false" />.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="default"> This property
returns <see langword="true" /> if the <see cref="P:System.Xml.XmlReader.AttributeCount" /> property of the current node is greater than zero. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
property to customize the behavior of this property in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this property to determine whether the current node has any attributes.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HasValue">
<MemberSignature Language="ILASM" Value=".property bool HasValue { public hidebysig virtual abstract specialname bool get_HasValue() }" />
<MemberSignature Language="C#" Value="public abstract bool HasValue { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets a value indicating whether the current node can have an associated text
value.</para>
</summary>
<value>
<para>A <see cref="T:System.Boolean" qualify="true" />
where <see langword="true" /> indicates the node on which the reader is currently
positioned can have an associated text value; otherwise,
<see langword="false" />.</para>
</value>
<remarks>
<para>
<block subset="none" type="note">
The following members of the <see cref="T:System.Xml.XmlNodeType" />
enumeration can have an associated value: <see langword="Attribute" />,
<see langword="CDATA" />, <see langword="Comment" />, <see langword="DocumentType" />,
<see langword="ProcessingInstruction" />, <see langword="SignificantWhitespace" />,
<see langword="Text" />, <see langword="Whitespace" />, and
<see langword="XmlDeclaration" />.
</block>
</para>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsDefault">
<MemberSignature Language="ILASM" Value=".property bool IsDefault { public hidebysig virtual abstract specialname bool get_IsDefault() }" />
<MemberSignature Language="C#" Value="public virtual bool IsDefault { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets a value indicating whether the current node is an
attribute that was generated from the default value defined
in the DTD or schema.
</para>
</summary>
<value>
<para>A <see cref="T:System.Boolean" qualify="true" />
where <see langword="true" /> indicates the
current node is an attribute whose value was generated from the default value
defined in the DTD or schema; <see langword="false" /> indicates the attribute value was
explicitly set. </para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides">
This property
should return
<see langword="false" />
for implementations that do not support schema or DTD information.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsEmptyElement">
<MemberSignature Language="ILASM" Value=".property bool IsEmptyElement { public hidebysig virtual abstract specialname bool get_IsEmptyElement() }" />
<MemberSignature Language="C#" Value="public abstract bool IsEmptyElement { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets a value indicating whether the current node is an
empty element (for example, <c><MyElement /></c>).</para>
</summary>
<value>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the
current node is an element (<see cref="P:System.Xml.XmlReader.NodeType" />
equals <see cref="F:System.Xml.XmlNodeType.Element" />) that ends with "<c>/></c>", otherwise,<see langword=" false" />.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>A corresponding <see langword="EndElement" /> node is not
generated for empty elements.</para>
<para>This property
is read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsName">
<MemberSignature Language="ILASM" Value=".method public hidebysig static bool IsName(string str)" />
<MemberSignature Language="C#" Value="public static bool IsName (string s);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="s" Type="System.String" />
</Parameters>
<Docs>
<param name="s">A <see cref="T:System.String" qualify="true" /> specifying the name to validate.</param>
<summary>
<para> Determines whether
the specified string is a valid XML name.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the name
is valid; otherwise, <see langword="false" />.</para>
</returns>
<remarks>
<block subset="none" type="note">
<para> This method uses the W3C XML
1.0 Recommendation (http://www.w3.org/TR/2000/REC-xml-20001006#NT-Name) to determine whether the name is valid.</para>
</block>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsNameToken">
<MemberSignature Language="ILASM" Value=".method public hidebysig static bool IsNameToken(string str)" />
<MemberSignature Language="C#" Value="public static bool IsNameToken (string s);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="s" Type="System.String" />
</Parameters>
<Docs>
<param name="s">A <see cref="T:System.String" qualify="true" /> specifying the name to validate.</param>
<summary>
<para> Determines whether the specified
string is a valid XML name token (Nmtoken).</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates
the name is valid; otherwise <see langword="false" />.</para>
</returns>
<remarks>
<block subset="none" type="note">
<para> This method uses the W3C XML 1.0 Recommendation (http://www.w3.org/TR/2000/REC-xml-20001006#NT-Nmtoken
) to determine whether the name token is valid.</para>
</block>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsStartElement">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual bool IsStartElement()" />
<MemberSignature Language="C#" Value="public virtual bool IsStartElement ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Determines if a node containing content is an
<see langword="Element" />
node.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the node is an
<see langword="Element" />
node; <see langword="false" />
otherwise.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above.</block>
</para>
<para>
<block subset="none" type="default">This method calls the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method, which
determines whether
the current node can contain content and, if not, moves the reader
to the next content node or the end of the input stream. When the reader
is positioned on a content node, the node is checked to determine if it is
an <see langword="Element" />
node. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this method to
determine whether the node returned by the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method is an <see langword=" Element" />
node.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsStartElement">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual bool IsStartElement(string name)" />
<MemberSignature Language="C#" Value="public virtual bool IsStartElement (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of an element.</param>
<summary>
<para> Determines if a node containing content is an <see langword="Element" /> node
with the specified qualified name.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" />
where <see langword="true" /> indicates the node is an
<see langword="Element" /> node with the specified name; <see langword="false" />
otherwise.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above. </block>
</para>
<para>
<block subset="none" type="default"> This method
calls the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method, which
determines whether the current node can
contain content and, if not, moves the reader to the next content node or
the end of the input stream. When the reader is positioned on a content node,
the node is checked to determine if it is an <see langword="Element" /> node with a <see cref="P:System.Xml.XmlReader.Name" /> property equal
to <paramref name=" name" />.</block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this method to
determine whether the node returned by the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method is an <see langword=" Element" /> node with the specified name.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsStartElement">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual bool IsStartElement(string localname, string ns)" />
<MemberSignature Language="C#" Value="public virtual bool IsStartElement (string localName, string namespaceName);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceName" Type="System.String" />
</Parameters>
<Docs>
<param name="localname">A <see cref="T:System.String" qualify="true" /> specifying the local name of an element.</param>
<param name="ns">A <see cref="T:System.String" qualify="true" /> specifying the namespace URI associated with the element. </param>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
<summary>
<para> Determines if a node containing content is an
<see langword="Element" /> node with the specified local name
and namespace URI. </para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the node
is an <see langword="Element" /> node with the specified local name and namespace
URI; <see langword="false" />
otherwise.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above. </block>
</para>
<para>
<block subset="none" type="default"> This method
calls the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method, which
determines whether the current node can
contain content and, if not, moves the reader to the next content node or
the end of the input stream. When the reader is positioned on a content node,
the node is checked to determine if it is an <see langword="Element" /> node with <see cref="P:System.Xml.XmlReader.LocalName" />
and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties equal to
<paramref name="localname" /> and <paramref name=" ns" />, respectively. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this method to
determine whether the node returned by the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method
is an <see langword=" Element" /> node with the specified local
name and namespace URI.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Item">
<MemberSignature Language="ILASM" Value=".property string Item[int32 i] { public hidebysig virtual abstract specialname string get_Item(int32 i) }" />
<MemberSignature Language="C#" Value="public virtual string this[int i] { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="i" Type="System.Int32" />
</Parameters>
<Docs>
<param name="i">A <see cref="T:System.Int32" qualify="true" /> specifying the zero-based index of the attribute relative to the containing element.</param>
<summary>
<para>Retrieves the value of the attribute with the specified index relative to the containing element.</para>
</summary>
<value>
<para>A <see cref="T:System.String" qualify="true" /> containing the value of the attribute.</para>
</value>
<remarks>
<para>
<block subset="none" type="behaviors"> This property does not move the reader.</block>
</para>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="i" /> is less than 0 or greater than or equal to the <see cref="P:System.Xml.XmlReader.AttributeCount" /> of the containing element.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Item">
<MemberSignature Language="ILASM" Value=".property string Item[string name] { public hidebysig virtual abstract specialname string get_Item(string name) }" />
<MemberSignature Language="C#" Value="public virtual string this[string name] { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of the attribute.</param>
<summary>
<para>Retrieves the value of the attribute with the specified qualified name.</para>
</summary>
<value>
<para>A <see cref="T:System.String" qualify="true" /> containing the value of the specified attribute, or
<see langword="null" />
if the attribute is not found.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>This property does not move the reader.</para>
<para>If the reader
is positioned on a <see langword="DocumentType" />
node, this method can be used to get the PUBLIC and
SYSTEM literals.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Item">
<MemberSignature Language="ILASM" Value=".property string Item[string name, string namespaceURI] { public hidebysig virtual abstract specialname string get_Item(string name, string namespaceURI) }" />
<MemberSignature Language="C#" Value="public virtual string this[string name, string namespaceURI] { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the local name of the attribute.</param>
<param name="namespaceURI">A <see cref="T:System.String" qualify="true" /> specifying the namespace URI of the attribute.</param>
<summary>
<para>Retrieves the value of the attribute with the specified local name and namespace URI.</para>
</summary>
<value>
<para>A <see cref="T:System.String" qualify="true" />
containing the value of the specified attribute, or <see langword="null" /> if the
attribute is not found.</para>
</value>
<remarks>
<para>
<block subset="none" type="behaviors"> This property does not move the reader. </block>
</para>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="LocalName">
<MemberSignature Language="ILASM" Value=".property string LocalName { public hidebysig virtual abstract specialname string get_LocalName() }" />
<MemberSignature Language="C#" Value="public abstract string LocalName { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets the local name of the current node.
</para>
</summary>
<value>
<para>A <see cref="T:System.String" qualify="true" />
containing the local name of the current node or, for node types that do not
have a name (like <see langword="Text" />, <see langword="Comment" /> , and so on),
<see cref="F:System.String.Empty" qualify="true" />.</para>
</value>
<remarks>
<para>
<block subset="none" type="behaviors"> As described
above. </block>
</para>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="LookupNamespace">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract string LookupNamespace(string prefix)" />
<MemberSignature Language="C#" Value="public abstract string LookupNamespace (string prefix);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="prefix" Type="System.String" />
</Parameters>
<Docs>
<param name="prefix">A <see cref="T:System.String" qualify="true" /> specifying the prefix whose namespace URI is to be resolved. To return the default namespace, specify <see cref="F:System.String.Empty" qualify="true" />. </param>
<summary>
<para> Resolves a namespace prefix in the scope of the current element.
</para>
</summary>
<returns>
<para> A <see cref="T:System.String" qualify="true" /> containing the
namespace URI to which the prefix maps. If <paramref name="prefix" /> is not in <see cref="P:System.Xml.XmlReader.NameTable" /> or no matching namespace is found, <see langword="null" /> is returned.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above. </block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveToAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract void MoveToAttribute(int32 i)" />
<MemberSignature Language="C#" Value="public virtual void MoveToAttribute (int i);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="i" Type="System.Int32" />
</Parameters>
<Docs>
<param name="i">A <see cref="T:System.Int32" qualify="true" /> specifying the zero-based index of the attribute relative to the containing element.</param>
<summary>
<para>Moves the position of the current instance to the attribute with the specified index relative to the containing element.</para>
</summary>
<remarks>
<para>
<block subset="none" type="behaviors"> After calling
this method, the <see cref="P:System.Xml.XmlReader.Name" />,
<see cref="P:System.Xml.XmlReader.NamespaceURI" />, and <see cref="P:System.Xml.XmlReader.Prefix" /> properties reflect the properties of current attribute.</block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="i" /> is less than 0 or greater than or equal to the <see cref="P:System.Xml.XmlReader.AttributeCount" /> of the containing element.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveToAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract bool MoveToAttribute(string name)" />
<MemberSignature Language="C#" Value="public abstract bool MoveToAttribute (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of the attribute.</param>
<summary>
<para>Moves the position of the current instance to the attribute with the specified qualified
name.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" />
where <see langword="true" /> indicates the attribute was found; otherwise,
<see langword="false" />. If <see langword="false" />, the reader's position does
not change.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> After calling
this method, the <see cref="P:System.Xml.XmlReader.Name" />,
<see cref="P:System.Xml.XmlReader.NamespaceURI" />, and <see cref="P:System.Xml.XmlReader.Prefix" /> properties reflect the properties of current attribute.</block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveToAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract bool MoveToAttribute(string name, string ns)" />
<MemberSignature Language="C#" Value="public abstract bool MoveToAttribute (string localName, string namespaceName);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceName" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the local name of the attribute.</param>
<param name="ns">A <see cref="T:System.String" qualify="true" /> specifying the namespace URI of the attribute.</param>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
<summary>
<para>Moves the position of the current instance to the attribute with the specified local name and
namespace URI.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" />
where <see langword="true" /> indicates the attribute was found; otherwise,
<see langword="false" />. If <see langword="false" />, the position of the current
instance does not change.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> After calling
this method, the <see cref="P:System.Xml.XmlReader.Name" />,
<see cref="P:System.Xml.XmlReader.NamespaceURI" />, and <see cref="P:System.Xml.XmlReader.Prefix" /> properties reflect the properties of current attribute.</block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveToContent">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual valuetype System.Xml.XmlNodeType MoveToContent()" />
<MemberSignature Language="C#" Value="public virtual System.Xml.XmlNodeType MoveToContent ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlNodeType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Determines whether the current node can contain content and, if not,
moves the position of the current instance to the next content node or the
end of the input stream.</para>
</summary>
<returns>
<para> The <see cref="T:System.Xml.XmlNodeType" /><see langword=" " />of the content
node, or <see cref="F:System.Xml.XmlNodeType.None" /> if the
position
of the reader has reached the end of the input stream.</para>
</returns>
<remarks>
<para>
<block subset="none" type="note">
The following members of <see cref="T:System.Xml.XmlNodeType" /> can contain content:
<see langword="Attribute" />, <see langword="CDATA" />, <see langword="Element" />, <see langword="EndElement" />,
<see langword="EntityReference" />, <see langword="EndEntity" />, and <see langword="Text" />.
</block>
</para>
<para>
<block subset="none" type="behaviors"> As described above.</block>
</para>
<para>
<block subset="none" type="default"> If the
current node is an <see langword="Attribute" /> node, this method
moves the position of the reader
back to the <see langword="Element" /> node that owns the attribute. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage">Use this method to determine whether the current
node can contain content and, if not, move the position of the reader to the next content node.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveToElement">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract bool MoveToElement()" />
<MemberSignature Language="C#" Value="public abstract bool MoveToElement ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Moves the position of the current instance to the node that contains the current
<see langword="Attribute" /> node.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the position of the reader was moved; <see langword="false" /> indicates the reader was not positioned on an <see langword="Attribute" /> node and
therefore the position of the reader was not
moved.</para>
</returns>
<remarks>
<para>
<block subset="none" type="note">
The <see langword="DocumentType" />, <see langword="Element" />, and<see langword=" XmlDeclaration" /> members of <see cref="T:System.Xml.XmlNodeType" /> can contain
attributes.
</block>
</para>
<para>
<block subset="none" type="behaviors"> As described
above. </block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveToFirstAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract bool MoveToFirstAttribute()" />
<MemberSignature Language="C#" Value="public abstract bool MoveToFirstAttribute ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Moves the position of the current instance to the first attribute associated with the current node.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" />
where <see langword="true" /> indicates the current node contains at least one attribute; otherwise,
<see langword="false" />.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> If <see cref="P:System.Xml.XmlReader.AttributeCount" /> is non-zero,
the position of
the reader
moves to the first attribute; otherwise, the position of the reader does not change. </block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MoveToNextAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract bool MoveToNextAttribute()" />
<MemberSignature Language="C#" Value="public abstract bool MoveToNextAttribute ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Moves the position of the current instance to the next attribute associated with the current node.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the position of the reader moved to the next attribute; <see langword="false" /> if there were no more attributes.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above. </block>
</para>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Name">
<MemberSignature Language="ILASM" Value=".property string Name { public hidebysig virtual abstract specialname string get_Name() }" />
<MemberSignature Language="C#" Value="public virtual string Name { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets the qualified name of the current node.</para>
</summary>
<value>
<para>A <see cref="T:System.String" qualify="true" />
containing the qualified name of the current node or, for node types that do not
have a name (like <see langword="Text" />, <see langword="Comment" /> , and so on),
<see cref="F:System.String.Empty" qualify="true" />.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para> The qualified name is equivalent to
the <see cref="P:System.Xml.XmlReader.LocalName" />
prefixed with <see cref="P:System.Xml.XmlReader.Prefix" /> and the
':' character. For example, <see cref="P:System.Xml.XmlReader.Name" /> is
"bk:book" for the element <c><bk:book></c>.
</para>
<para> The name returned is dependent on the <see cref="P:System.Xml.XmlReader.NodeType" /> of the node. The following node types
return the listed values. All other node types return an empty string.</para>
<list type="table">
<listheader>
<term>Node Type</term>
<description>Name</description>
</listheader>
<item>
<term>
<see langword="Attribute" />
</term>
<description>The name of the attribute.</description>
</item>
<item>
<term>
<see langword="DocumentType" />
</term>
<description>The document type name.</description>
</item>
<item>
<term>
<see langword="Element" />
</term>
<description>The tag name.</description>
</item>
<item>
<term>
<see langword="EntityReference" />
</term>
<description>The name of the entity referenced.</description>
</item>
<item>
<term>
<see langword="ProcessingInstruction" />
</term>
<description>The target of the processing
instruction.</description>
</item>
<item>
<term>
<see langword="XmlDeclaration" />
</term>
<description>The literal string "xml".</description>
</item>
</list>
<para>This property is read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="NamespaceURI">
<MemberSignature Language="ILASM" Value=".property string NamespaceURI { public hidebysig virtual abstract specialname string get_NamespaceURI() }" />
<MemberSignature Language="C#" Value="public abstract string NamespaceURI { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets the namespace URI associated with the node on which the reader is positioned. </para>
</summary>
<value>
<para> A <see cref="T:System.String" qualify="true" /> containing the namespace URI of the current node or, if
no namespace URI is associated with the current node, <see cref="F:System.String.Empty" qualify="true" />.
</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>This property is relevant to <see langword="Element" />
and <see langword="Attribute" />
nodes
only.</para>
<para>Namespaces conform to the W3C "Namespaces in XML" recommendation,
REC-xml-names-19990114. </para>
<para>This property is read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="NameTable">
<MemberSignature Language="ILASM" Value=".property class System.Xml.XmlNameTable NameTable { public hidebysig virtual abstract specialname class System.Xml.XmlNameTable get_NameTable() }" />
<MemberSignature Language="C#" Value="public abstract System.Xml.XmlNameTable NameTable { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlNameTable</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets the name table used by the current instance to store
and look up element and attribute names, prefixes, and namespaces.</para>
</summary>
<value>
<para>The <see cref="T:System.Xml.XmlNameTable" qualify="true" /> used by the current
instance.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>Element and attribute names,
prefixes, and namespaces are stored as individual <see cref="T:System.String" qualify="true" /> objects when a document is
read.</para>
<para>This property is read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="NodeType">
<MemberSignature Language="ILASM" Value=".property valuetype System.Xml.XmlNodeType NodeType { public hidebysig virtual abstract specialname valuetype System.Xml.XmlNodeType get_NodeType() }" />
<MemberSignature Language="C#" Value="public abstract System.Xml.XmlNodeType NodeType { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlNodeType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets the type of the current node.</para>
</summary>
<value>
<para>One of the members of the <see cref="T:System.Xml.XmlNodeType" /> enumeration representing the type of the current
node. </para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>This property does not return the following <see cref="T:System.Xml.XmlNodeType" /> members:
<see langword="Document" />, <see langword="DocumentFragment" />,
<see langword="Entity" />, <see langword="EndEntity" />, and
<see langword="Notation" />.</para>
<para>This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Prefix">
<MemberSignature Language="ILASM" Value=".property string Prefix { public hidebysig virtual abstract specialname string get_Prefix() }" />
<MemberSignature Language="C#" Value="public abstract string Prefix { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets the namespace prefix associated with the current node.
</para>
</summary>
<value>
<para>A <see cref="T:System.String" qualify="true" />
containing the namespace prefix associated with the current node. </para>
</value>
<remarks>
<para>
<block subset="none" type="note"> A namespace prefix
is used as a reference for a namespace URI and is defined in an element
declaration. For example, <c><someElement xmlns:bk="someURL"></c>, defines a
prefix name "bk".
</block>
</para>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="QuoteChar">
<MemberSignature Language="ILASM" Value=".property valuetype System.Char QuoteChar { public hidebysig virtual abstract specialname valuetype System.Char get_QuoteChar() }" />
<MemberSignature Language="C#" Value="public virtual char QuoteChar { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Char</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets the quotation mark character used to enclose the value of an attribute.
</para>
</summary>
<value>
<para> A <see cref="T:System.Char" qualify="true" /> specifying the quotation mark character (" or ') used to enclose the value of
an attribute.
</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Read">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract bool Read()" />
<MemberSignature Language="C#" Value="public abstract bool Read ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Moves the position of the current instance to the next node in the stream, exposing its properties.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" />
where <see langword="true" /> indicates the node was read successfully, and
<see langword="false" /> indicates there were no more nodes to read.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors">As described above. </block>
</para>
<para>
<block subset="none" type="overrides">
This method must be overridden in order to provide the functionality as described herein, as there is no default implementation.
</block>
</para>
<para>
<block subset="none" type="usage">When a reader
is first created and initialized, there is no information available. Calling
this method is required to read the first node.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadAttributeValue">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract bool ReadAttributeValue()" />
<MemberSignature Language="C#" Value="public abstract bool ReadAttributeValue ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Parses an attribute value into one or more
<see langword="Text" />, <see langword="EntityReference" />, and <see langword="EndEntity" />
nodes.</para>
</summary>
<returns>
<para>A <see cref="T:System.Boolean" qualify="true" /> where <see langword="true" /> indicates the attribute value was parsed, and
<see langword="false" /> indicates the reader was not
positioned on an attribute node or all the attribute values have been read.</para>
<see langword="" />
</returns>
<remarks>
<block subset="none" type="note">
<para> To parse an
<see langword="EntityReference" /> node, call the <see cref="M:System.Xml.XmlReader.ResolveEntity" /> method. After the node is parsed into child nodes, call
the <see cref="M:System.Xml.XmlReader.ReadAttributeValue" />
method again to read the value of the entity.</para>
<para>The
<see cref="P:System.Xml.XmlReader.Depth" /> of an
attribute value node is one plus the depth of the attribute node. When general entity references
are stepped into or out of, the <see cref="P:System.Xml.XmlReader.Depth" />
increments or decrements by one, respectively.</para>
</block>
<para>
<block subset="none" type="behaviors">
As described above.
</block>
</para>
<para>
<block subset="none" type="overrides">
Implementations that cannot expand general entities should return general
entities as a single empty (<see cref="P:System.Xml.XmlReader.Value" /> equals <see cref="F:System.String.Empty" qualify="true" />)
<see langword="EntityReference" />
node.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this method after calling <see cref="M:System.Xml.XmlReader.MoveToAttribute(System.String)" /> to
read through the <see langword="Text" /> , <see langword="EntityReference," /> or <see langword="EndEntity" />
nodes that make up the attribute
value. Call the <see cref="M:System.Xml.XmlReader.ResolveEntity" /> method to resolve the
<see langword="EntityReference" />
nodes. </block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAs">
<MemberSignature Language="C#" Value="public virtual object ReadContentAs (Type type, System.Xml.IXmlNamespaceResolver resolver);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="type" Type="System.Type" />
<Parameter Name="resolver" Type="System.Xml.IXmlNamespaceResolver" />
</Parameters>
<Docs>
<param name="type">To be added.</param>
<param name="resolver">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsBase64">
<MemberSignature Language="C#" Value="public virtual int ReadContentAsBase64 (byte[] buffer, int offset, int length);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.Byte[]" />
<Parameter Name="offset" Type="System.Int32" />
<Parameter Name="length" Type="System.Int32" />
</Parameters>
<Docs>
<param name="buffer">To be added.</param>
<param name="offset">To be added.</param>
<param name="length">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsBinHex">
<MemberSignature Language="C#" Value="public virtual int ReadContentAsBinHex (byte[] buffer, int offset, int length);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.Byte[]" />
<Parameter Name="offset" Type="System.Int32" />
<Parameter Name="length" Type="System.Int32" />
</Parameters>
<Docs>
<param name="buffer">To be added.</param>
<param name="offset">To be added.</param>
<param name="length">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsBoolean">
<MemberSignature Language="C#" Value="public virtual bool ReadContentAsBoolean ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsDateTime">
<MemberSignature Language="C#" Value="public virtual DateTime ReadContentAsDateTime ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.DateTime</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsDecimal">
<MemberSignature Language="C#" Value="public virtual decimal ReadContentAsDecimal ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Decimal</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsDouble">
<MemberSignature Language="C#" Value="public virtual double ReadContentAsDouble ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsFloat">
<MemberSignature Language="C#" Value="public virtual float ReadContentAsFloat ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsInt">
<MemberSignature Language="C#" Value="public virtual int ReadContentAsInt ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsLong">
<MemberSignature Language="C#" Value="public virtual long ReadContentAsLong ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsObject">
<MemberSignature Language="C#" Value="public virtual object ReadContentAsObject ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadContentAsString">
<MemberSignature Language="C#" Value="public virtual string ReadContentAsString ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAs">
<MemberSignature Language="C#" Value="public virtual object ReadElementContentAs (Type type, System.Xml.IXmlNamespaceResolver resolver);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="type" Type="System.Type" />
<Parameter Name="resolver" Type="System.Xml.IXmlNamespaceResolver" />
</Parameters>
<Docs>
<param name="type">To be added.</param>
<param name="resolver">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAs">
<MemberSignature Language="C#" Value="public virtual object ReadElementContentAs (Type type, System.Xml.IXmlNamespaceResolver resolver, string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="type" Type="System.Type" />
<Parameter Name="resolver" Type="System.Xml.IXmlNamespaceResolver" />
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="type">To be added.</param>
<param name="resolver">To be added.</param>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsBase64">
<MemberSignature Language="C#" Value="public virtual int ReadElementContentAsBase64 (byte[] buffer, int offset, int length);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.Byte[]" />
<Parameter Name="offset" Type="System.Int32" />
<Parameter Name="length" Type="System.Int32" />
</Parameters>
<Docs>
<param name="buffer">To be added.</param>
<param name="offset">To be added.</param>
<param name="length">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsBinHex">
<MemberSignature Language="C#" Value="public virtual int ReadElementContentAsBinHex (byte[] buffer, int offset, int length);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.Byte[]" />
<Parameter Name="offset" Type="System.Int32" />
<Parameter Name="length" Type="System.Int32" />
</Parameters>
<Docs>
<param name="buffer">To be added.</param>
<param name="offset">To be added.</param>
<param name="length">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsBoolean">
<MemberSignature Language="C#" Value="public virtual bool ReadElementContentAsBoolean ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsBoolean">
<MemberSignature Language="C#" Value="public virtual bool ReadElementContentAsBoolean (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsDateTime">
<MemberSignature Language="C#" Value="public virtual DateTime ReadElementContentAsDateTime ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.DateTime</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsDateTime">
<MemberSignature Language="C#" Value="public virtual DateTime ReadElementContentAsDateTime (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.DateTime</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsDecimal">
<MemberSignature Language="C#" Value="public virtual decimal ReadElementContentAsDecimal ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Decimal</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsDecimal">
<MemberSignature Language="C#" Value="public virtual decimal ReadElementContentAsDecimal (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Decimal</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsDouble">
<MemberSignature Language="C#" Value="public virtual double ReadElementContentAsDouble ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsDouble">
<MemberSignature Language="C#" Value="public virtual double ReadElementContentAsDouble (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsFloat">
<MemberSignature Language="C#" Value="public virtual float ReadElementContentAsFloat ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsFloat">
<MemberSignature Language="C#" Value="public virtual float ReadElementContentAsFloat (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsInt">
<MemberSignature Language="C#" Value="public virtual int ReadElementContentAsInt ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsInt">
<MemberSignature Language="C#" Value="public virtual int ReadElementContentAsInt (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsLong">
<MemberSignature Language="C#" Value="public virtual long ReadElementContentAsLong ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsLong">
<MemberSignature Language="C#" Value="public virtual long ReadElementContentAsLong (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsObject">
<MemberSignature Language="C#" Value="public virtual object ReadElementContentAsObject ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsObject">
<MemberSignature Language="C#" Value="public virtual object ReadElementContentAsObject (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsString">
<MemberSignature Language="C#" Value="public virtual string ReadElementContentAsString ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementContentAsString">
<MemberSignature Language="C#" Value="public virtual string ReadElementContentAsString (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementString">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual string ReadElementString()" />
<MemberSignature Language="C#" Value="public virtual string ReadElementString ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Reads the contents of a text-only element.</para>
</summary>
<returns>
<para> A <see cref="T:System.String" qualify="true" /> containing the contents of the element.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above. </block>
</para>
<para>
<block subset="none" type="default"> This method calls the
<see cref="M:System.Xml.XmlReader.MoveToContent" /> method and, if
the returned node is an <see langword="Element" /> node, calls the <see cref="M:System.Xml.XmlReader.ReadString" />
method to read the contents. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage">Use this method to read the contents of a text-only element.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="Element" /> node, the element does not contain a simple text value, or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementString">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual string ReadElementString(string name)" />
<MemberSignature Language="C#" Value="public virtual string ReadElementString (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of an element.</param>
<summary>
<para>Reads the contents of a text-only element with the specified qualified
name.</para>
</summary>
<returns>
<para>A <see cref="T:System.String" qualify="true" /> containing the contents of the element.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above. </block>
</para>
<para>
<block subset="none" type="default">This method calls the
<see cref="M:System.Xml.XmlReader.MoveToContent" /> method and, if
the returned node is an <see langword="Element" /> node,
compares the <see cref="P:System.Xml.XmlReader.Name" /> property of the node
to <paramref name=" name" />. If they are equal, this method calls the <see cref="M:System.Xml.XmlReader.ReadString" /> method to read
the contents of the element. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage">Use this method to read the contents of a text-only element with the specified qualified name.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="Element" /> node, the <see cref="P:System.Xml.XmlReader.Name" /> property of the <see langword="Element" /> node does not equal <paramref name="name" />, the element does not contain a simple text value, or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadElementString">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual string ReadElementString(string localname, string ns)" />
<MemberSignature Language="C#" Value="public virtual string ReadElementString (string localName, string namespaceName);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceName" Type="System.String" />
</Parameters>
<Docs>
<param name="localname">A <see cref="T:System.String" qualify="true" /> specifying the local name of an element.</param>
<param name="ns">A <see cref="T:System.String" qualify="true" /> specifying the namespace URI associated with the element.</param>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
<summary>
<para>Reads the contents of a text-only
element with the specified local name and namespace URI.</para>
</summary>
<returns>
<para>A <see cref="T:System.String" qualify="true" /> containing the contents of the element.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above. </block>
</para>
<para>
<block subset="none" type="default"> This method
calls the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method. If the returned node is an
<see langword="Element" /> node, this method compares the <see cref="P:System.Xml.XmlReader.LocalName" />
and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties of the node to <paramref name="localname" /> and
<paramref name="ns" />, respectively. If they are equal, this method calls the <see cref="M:System.Xml.XmlReader.ReadString" />
method to read
the contents of the element. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage">Use this method to
read the contents of a text-only element with the specified local name and namespace URI.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="Element" /> node, the <see cref="P:System.Xml.XmlReader.LocalName" /> property of the <see langword="Element" /> node does not equal <paramref name="localname" />, or the <see cref="P:System.Xml.XmlReader.NamespaceURI" /> property of the <see langword="Element" /> node does not equal <paramref name="ns" />, the element does not contain a simple text value, or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadEndElement">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void ReadEndElement()" />
<MemberSignature Language="C#" Value="public virtual void ReadEndElement ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Reads an <see langword="EndElement" /> node and advances the reader to
the next node.</para>
</summary>
<remarks>
<para>
<block subset="none" type="behaviors"> As described above. </block>
</para>
<para>
<block subset="none" type="default"> This method
calls the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method, which determines whether the
current node can contain content and, if not, moves the reader to the next
content node or the end of the input stream. The node the reader ends up
positioned on is checked to determine if it is an <see langword="EndElement" />
node. If so, the node is read and the reader is moved to the next node.</block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this method to
read an <see langword="EndElement" /> node and advance the reader to the next node.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="EndElement" /> node or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadInnerXml">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract string ReadInnerXml()" />
<MemberSignature Language="C#" Value="public virtual string ReadInnerXml ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Reads the contents of the current node, including child nodes and markup.</para>
</summary>
<returns>
<para>A <see cref="T:System.String" qualify="true" />
containing the XML content, or <see cref="F:System.String.Empty" qualify="true" /> if the current node is neither an element nor
attribute, or has no child nodes.</para>
</returns>
<remarks>
<block subset="none" type="behaviors">
<para> The current node and corresponding end node are not returned. </para>
<para>If the current node is an element, after the call to this method, the reader
is positioned after the corresponding end element.</para>
<para>If the current node is an attribute, the position of the reader is not changed.</para>
<block subset="none" type="note">
<para> For a comparison
between this method and the <see cref="M:System.Xml.XmlReader.ReadOuterXml" /> method, see <see cref="M:System.Xml.XmlTextReader.ReadInnerXml" qualify="true" />.</para>
</block>
</block>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The XML was not well-formed, or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadOuterXml">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract string ReadOuterXml()" />
<MemberSignature Language="C#" Value="public virtual string ReadOuterXml ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Reads the current node and its contents, including child nodes and markup.</para>
</summary>
<returns>
<para>A <see cref="T:System.String" qualify="true" />
containing the XML content, or <see cref="F:System.String.Empty" qualify="true" /> if the current node is neither an element nor
attribute.</para>
</returns>
<remarks>
<block subset="none" type="behaviors">
<para> The current node and corresponding end node are returned. </para>
<para>If the current node is an element, after the call to this method, the reader
is positioned after the corresponding end element.</para>
<para>If the current node is an attribute, the position of the reader is not changed.</para>
<block subset="none" type="note">
<para> For a comparison
between this method and the <see cref="M:System.Xml.XmlReader.ReadOuterXml" /> method, see <see cref="M:System.Xml.XmlTextReader.ReadInnerXml" qualify="true" />.</para>
</block>
</block>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The XML was not well-formed, or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadStartElement">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void ReadStartElement()" />
<MemberSignature Language="C#" Value="public virtual void ReadStartElement ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Reads an <see langword="Element" /> node and advances the reader to the next
node.</para>
</summary>
<remarks>
<para>
<block subset="none" type="behaviors">As described above. </block>
</para>
<para>
<block subset="none" type="default">This method
calls the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method, which determines whether the
current node can contain content and, if not, moves the reader to the next
content node or the end of the input stream. The node the reader ends up
positioned on is checked to determine if it is an <see langword="Element" />
node. If so, the node is read and the reader is moved to the next node. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this method to
read an <see langword="Element" /> node and advance the reader to the next node.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="Element" /> node or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadStartElement">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void ReadStartElement(string name)" />
<MemberSignature Language="C#" Value="public virtual void ReadStartElement (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of an element.</param>
<summary>
<para>Reads an <see langword="Element" />
node with the specified qualified name and advances
the reader to the next node.</para>
</summary>
<remarks>
<para>
<block subset="none" type="behaviors">As described above. </block>
</para>
<para>
<block subset="none" type="default">This method calls
the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method and, if the returned node is an
<see langword="Element" /> node, compares the <see cref="P:System.Xml.XmlReader.Name" /> property of the node to
<paramref name="name" />. If they are equal, this method calls the <see cref="M:System.Xml.XmlReader.Read" />
method to read the element and move to the next node. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this method to
read an <see langword="Element" /> node with the specified
qualified name, and advance the reader to the next node.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="Element" /> node, the <see cref="P:System.Xml.XmlReader.Name" /> property of the <see langword="Element" /> node does not equal <paramref name="name" />, or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadStartElement">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void ReadStartElement(string localname, string ns)" />
<MemberSignature Language="C#" Value="public virtual void ReadStartElement (string localName, string namespaceName);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceName" Type="System.String" />
</Parameters>
<Docs>
<param name="localname">A <see cref="T:System.String" qualify="true" /> specifying the local name of an element.</param>
<param name="ns">A <see cref="T:System.String" qualify="true" /> specifying the namespace URI associated with the element.</param>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
<summary>
<para>Reads an <see langword="Element" /> node with the specified local name and
namespace URI and advances the reader to the next node.</para>
</summary>
<remarks>
<para>
<block subset="none" type="behaviors">As described above. </block>
</para>
<para>
<block subset="none" type="default">This method calls
the <see cref="M:System.Xml.XmlReader.MoveToContent" /> method. If the returned node is an
<see langword="Element" /> node, this method compares the <see cref="P:System.Xml.XmlReader.LocalName" />
and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties of the node to <paramref name="localname" />
and <paramref name="ns" />, respectively. If they are equal, this method calls the <see cref="M:System.Xml.XmlReader.Read" />
method to read the element and move to the next node. </block>
</para>
<para>
<block subset="none" type="overrides"> Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage"> Use this method to
read an <see langword="Element" /> node with the specified
local name and namespace URI, and advance the reader to the next node.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="Element" /> node, the <see cref="P:System.Xml.XmlReader.LocalName" /> property of the <see langword="Element" /> node does not equal <paramref name="localname" />, the <see cref="P:System.Xml.XmlReader.NamespaceURI" /> property of the <see langword="Element" /> node does not equal <paramref name="ns" />, or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadState">
<MemberSignature Language="ILASM" Value=".property valuetype System.Xml.ReadState ReadState { public hidebysig virtual abstract specialname valuetype System.Xml.ReadState get_ReadState() }" />
<MemberSignature Language="C#" Value="public abstract System.Xml.ReadState ReadState { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Xml.ReadState</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Gets the read state of the reader.
</para>
</summary>
<value>
<para> One of the members of the <see cref="T:System.Xml.ReadState" /> enumeration.
</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadString">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract string ReadString()" />
<MemberSignature Language="C#" Value="public virtual string ReadString ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Reads the contents of an element or text node as a string.</para>
</summary>
<returns>
<para>A <see cref="T:System.String" qualify="true" />
containing the contents of the <see langword="Element" /> or <see langword="Text" />
node, or <see cref="F:System.String.Empty" qualify="true" /> if the reader is positioned on any other type of
node.</para>
</returns>
<remarks>
<block subset="none" type="behaviors">
<para>If positioned on an <see langword="Element" /> node, this method concatenates all
<see langword="Text" />, <see langword="SignificantWhitespace" />,
<see langword="Whitespace" />, and <see langword="CDATA" /> node types, and returns the concatenated
data as the element content. If none of these node types exist,
<see cref="F:System.String.Empty" qualify="true" />
is returned. Concatenation
stops when any markup is encountered, which can occur in a mixed content
model or when an element end tag is read.</para>
<para>If positioned on an element <see langword="Text" /> node, this method performs the same
concatenation from the <see langword="Text" /> node to the element end tag. If the
reader is positioned on an attribute <see langword="Text" /> node, this method has the same functionality as
if the reader were position on the element start tag. </para>
</block>
<para>
<block subset="none" type="overrides"> This method must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadSubtree">
<MemberSignature Language="C#" Value="public virtual System.Xml.XmlReader ReadSubtree ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReader</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadToDescendant">
<MemberSignature Language="C#" Value="public virtual bool ReadToDescendant (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadToDescendant">
<MemberSignature Language="C#" Value="public virtual bool ReadToDescendant (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadToFollowing">
<MemberSignature Language="C#" Value="public virtual bool ReadToFollowing (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadToFollowing">
<MemberSignature Language="C#" Value="public virtual bool ReadToFollowing (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadToNextSibling">
<MemberSignature Language="C#" Value="public virtual bool ReadToNextSibling (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadToNextSibling">
<MemberSignature Language="C#" Value="public virtual bool ReadToNextSibling (string localName, string namespaceURI);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceURI" Type="System.String" />
</Parameters>
<Docs>
<param name="localName">To be added.</param>
<param name="namespaceURI">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ReadValueChunk">
<MemberSignature Language="C#" Value="public virtual int ReadValueChunk (char[] buffer, int offset, int length);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.Char[]" />
<Parameter Name="offset" Type="System.Int32" />
<Parameter Name="length" Type="System.Int32" />
</Parameters>
<Docs>
<param name="buffer">To be added.</param>
<param name="offset">To be added.</param>
<param name="length">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ResolveEntity">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract void ResolveEntity()" />
<MemberSignature Language="C#" Value="public abstract void ResolveEntity ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Resolves the entity
reference for <see langword="EntityReference" /> nodes.</para>
</summary>
<remarks>
<block subset="none" type="behaviors">
<para> This method
parses the entity reference into child nodes. When the parsing is finished a
new <see cref="F:System.Xml.XmlNodeType.EndEntity" qualify="true" /> node is
placed
in the
stream to close the <see langword="EntityReference" />
scope. To step into the entity after this
method has been called, call the <see cref="M:System.Xml.XmlReader.ReadAttributeValue" /> method if the entity is part of an attribute value,
or the <see cref="M:System.Xml.XmlReader.Read" /> method if the entity is part of element
content.</para>
<para> If this method is not called, the parser moves to the
next node past the entity (child nodes are bypassed).</para>
</block>
<block subset="none" type="overrides">
<para>This method must be overridden in order to provide the functionality as described in
the Behaviors and Usage sections, as there is no default implementation.</para>
<para>This method is required
to throw an exception for implementations that do not support schema or DTD
information. In this case, the <see cref="P:System.Xml.XmlReader.CanResolveEntity" />
property is required to return
<see langword=" false" />.</para>
</block>
<para>
<block subset="none" type="usage"> Use this method
to resolve the entity reference for <see langword=" EntityReference" /> nodes. Before calling
this method, determine whether the reader can resolve an entity by
checking the <see cref="P:System.Xml.XmlReader.CanResolveEntity" /> property. </block>
</para>
</remarks>
<exception cref="T:System.InvalidOperationException">The reader is not positioned on a <see cref="F:System.Xml.XmlNodeType.EntityReference" /> node.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SchemaInfo">
<MemberSignature Language="C#" Value="public virtual System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Xml.Schema.IXmlSchemaInfo</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Settings">
<MemberSignature Language="C#" Value="public virtual System.Xml.XmlReaderSettings Settings { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlReaderSettings</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Skip">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void Skip()" />
<MemberSignature Language="C#" Value="public virtual void Skip ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Skips over the current element and moves the position of the current instance to the next node in the stream.</para>
</summary>
<remarks>
<para>
<block subset="none" type="behaviors"> If the reader
is positioned on a non-empty <see langword="Element" /> node (<see cref="P:System.Xml.XmlReader.IsEmptyElement" /> equals <see langword="false" />), the position of the reader is moved to the node following the
corresponding <see langword="EndElement" /> node. The properties of the
nodes that are skipped over are not exposed. If the reader is positioned on any
other node type, the position of the reader is moved to the next node, in this
case behaving like the <see cref="M:System.Xml.XmlReader.Read" />
method. </block>
</para>
<para>
<block subset="none" type="default"> This method
calls the <see cref="M:System.Xml.XmlReader.MoveToElement" /> method before skipping to the next node. </block>
</para>
<para>
<block subset="none" type="overrides">
Override this
method to customize the behavior of this method in types derived from
the <see cref="T:System.Xml.XmlReader" />
class.
</block>
</para>
<para>
<block subset="none" type="usage">Use this method to skip over the current node.
</block>
</para>
</remarks>
<exception cref="T:System.Xml.XmlException">The XML was not well-formed, or an error occurred while parsing the XML.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="System.IDisposable.Dispose">
<MemberSignature Language="C#" Value="void IDisposable.Dispose ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Value">
<MemberSignature Language="ILASM" Value=".property string Value { public hidebysig virtual abstract specialname string get_Value() }" />
<MemberSignature Language="C#" Value="public abstract string Value { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets the text value of the current node.</para>
</summary>
<value>
<para>A <see cref="T:System.String" qualify="true" /> containing the text value of the current node.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>The value returned depends on the <see cref="P:System.Xml.XmlReader.NodeType" />. The following table lists node types that have a value to return. All
other node types return <see cref="F:System.String.Empty" qualify="true" />.</para>
<list type="table">
<listheader>
<term>Node Type</term>
<description>Value</description>
</listheader>
<item>
<term>
<see langword="Attribute" />
</term>
<description>The value of the attribute.</description>
</item>
<item>
<term>
<see langword="CDATA" />
</term>
<description>The content of the CDATA section.</description>
</item>
<item>
<term>
<see langword="Comment" />
</term>
<description>The content of the comment.</description>
</item>
<item>
<term>
<see langword="DocumentType" />
</term>
<description>The internal subset.</description>
</item>
<item>
<term>
<see langword="ProcessingInstruction" />
</term>
<description>The entire content, excluding the target.</description>
</item>
<item>
<term>
<see langword="SignificantWhitespace" />
</term>
<description>The white space between markup in a mixed content
model, or in the scope of <c>xml:space = "preserve"</c>.</description>
</item>
<item>
<term>
<see langword="Text" />
</term>
<description>
<para>The content of the text node.</para>
</description>
</item>
<item>
<term>
<see langword="Whitespace" />
</term>
<description>The white space between markup.</description>
</item>
<item>
<term>
<see langword="XmlDeclaration" />
</term>
<description>The content of the declaration.</description>
</item>
</list>
<para>This property is read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ValueType">
<MemberSignature Language="C#" Value="public virtual Type ValueType { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="XmlLang">
<MemberSignature Language="ILASM" Value=".property string XmlLang { public hidebysig virtual abstract specialname string get_XmlLang() }" />
<MemberSignature Language="C#" Value="public virtual string XmlLang { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets the current <c>xml:lang</c> scope.</para>
</summary>
<value>
<para>A <see cref="T:System.String" qualify="true" /> containing the
current <c>xml:lang</c> scope.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="XmlSpace">
<MemberSignature Language="ILASM" Value=".property valuetype System.Xml.XmlSpace XmlSpace { public hidebysig virtual abstract specialname valuetype System.Xml.XmlSpace get_XmlSpace() }" />
<MemberSignature Language="C#" Value="public virtual System.Xml.XmlSpace XmlSpace { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Xml.XmlSpace</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets the current <c>xml:space</c> scope.</para>
</summary>
<value>
<para>One of the members of the <see cref="T:System.Xml.XmlSpace" />
enumeration. If no <c>xml:space</c> scope exists, this property defaults to
<see cref="F:System.Xml.XmlSpace.None" />.</para>
</value>
<remarks>
<block subset="none" type="behaviors">
<para>As described
above.</para>
<para> This property is
read-only.</para>
</block>
<para>
<block subset="none" type="overrides"> This property must be overridden in order
to provide the functionality described above, as there is no default implementation.
</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
<TypeExcluded>0</TypeExcluded>
</Type>
|