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
|
<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" />
<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>
</AssemblyInfo>
<ThreadingSafetyStatement>All public static members of this type are safe for multithreaded operations. No instance members are guaranteed to be thread safe.</ThreadingSafetyStatement>
<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>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>System.Reflection.DefaultMember(MemberName="Item")</AttributeName>
</Attribute>
</Attributes>
<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>
</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>
</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>
<exception cref="T:System.InvalidOperationException">The reader is not positioned on a <see cref="F:System.Xml.XmlNodeType.EntityReference" /> node.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<summary>
<para> Resolves a namespace prefix in the scope of the current element.
</para>
</summary>
<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>
<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>
</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>
<exception cref="T:System.Xml.XmlException">The XML was not well-formed, or an error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<exception cref="T:System.Xml.XmlException">The XML was not well-formed, or an error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<summary>
<para> Determines if a node containing content is an
<see langword="Element" /> node with the specified local name
and namespace URI. </para>
</summary>
<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>
<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>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
<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>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
</Docs>
<Excluded>0</Excluded>
</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>
<summary>
<para> Determines if a node containing content is an <see langword="Element" /> node
with the specified qualified name.</para>
</summary>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of an element.</param>
<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>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="EndElement" /> node or an error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<summary>
<para>Reads the contents of a text-only
element with the specified local name and namespace URI.</para>
</summary>
<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>
<returns>
<para>A <see cref="T:System.String" qualify="true" /> containing the contents of the element.</para>
</returns>
<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>
<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>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
</Docs>
<Excluded>0</Excluded>
</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>
<summary>
<para>Reads the contents of a text-only element with the specified qualified
name.</para>
</summary>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of an element.</param>
<returns>
<para>A <see cref="T:System.String" qualify="true" /> containing the contents of the element.</para>
</returns>
<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>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<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>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<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>
<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>
<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>
<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>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
</Docs>
<Excluded>0</Excluded>
</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>
<summary>
<para>Reads an <see langword="Element" />
node with the specified qualified name and advances
the reader to the next node.</para>
</summary>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of an element.</param>
<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>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<exception cref="T:System.Xml.XmlException">The node is not an <see langword="Element" /> node or an error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
<exception cref="T:System.Xml.XmlException">The XML was not well-formed, or an error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
</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>
<exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
<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>
</Docs>
<Excluded>0</Excluded>
</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>
</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>
</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>
</Member>
<Member MemberName="MoveToAttribute">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual abstract void MoveToAttribute(int32 i)" />
<MemberSignature Language="C#" Value="public abstract void MoveToAttribute (int i);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="i" Type="System.Int32" />
</Parameters>
<Docs>
<summary>
<para>Moves the position of the current instance to the attribute with the specified index relative to the containing element.</para>
</summary>
<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>
<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>
<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>
</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>
<summary>
<para>Moves the position of the current instance to the attribute with the specified local name and
namespace URI.</para>
</summary>
<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>
<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>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
</Docs>
<Excluded>0</Excluded>
</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>
<summary>
<para>Moves the position of the current instance to the attribute with the specified qualified
name.</para>
</summary>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of the attribute.</param>
<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>
</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>
<summary>
<para>Returns the value of the attribute with the specified index relative to the containing element.</para>
</summary>
<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>
<returns>
<para>A <see cref="T:System.String" qualify="true" />
containing the value of the specified attribute.</para>
</returns>
<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>
<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>
</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>
<summary>
<para>Returns the value of the attribute with the specified local
name and namespace URI.</para>
</summary>
<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>
<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>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
</Docs>
<Excluded>0</Excluded>
</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>
<summary>
<para>Returns the value of the attribute with the specified qualified name.</para>
</summary>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of the attribute.</param>
<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>
</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>
<summary>
<para> Determines whether
the specified string is a valid XML name.</para>
</summary>
<param name="s">A <see cref="T:System.String" qualify="true" /> specifying the name to validate.</param>
<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>
</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>
<summary>
<para> Determines whether the specified
string is a valid XML name token (Nmtoken).</para>
</summary>
<param name="s">A <see cref="T:System.String" qualify="true" /> specifying the name to validate.</param>
<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>
</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>
</Member>
<Member MemberName="Name">
<MemberSignature Language="ILASM" Value=".property string Name { public hidebysig virtual abstract specialname string get_Name() }" />
<MemberSignature Language="C#" Value="public abstract 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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</Member>
<Member MemberName="IsDefault">
<MemberSignature Language="ILASM" Value=".property bool IsDefault { public hidebysig virtual abstract specialname bool get_IsDefault() }" />
<MemberSignature Language="C#" Value="public abstract 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>
</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 abstract 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>
</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 abstract 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>
</Member>
<Member MemberName="XmlLang">
<MemberSignature Language="ILASM" Value=".property string XmlLang { public hidebysig virtual abstract specialname string get_XmlLang() }" />
<MemberSignature Language="C#" Value="public abstract 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>
</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>
</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 abstract string Item[int i] { get; };" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="i" Type="System.Int32" />
</Parameters>
<Docs>
<summary>
<para>Retrieves the value of the attribute with the specified index relative to the containing element.</para>
</summary>
<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>
<value>
<para>A <see cref="T:System.String" qualify="true" /> containing the value of the attribute.</para>
</value>
<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>
<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>
</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 abstract string Item[string name] { get; };" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<summary>
<para>Retrieves the value of the attribute with the specified qualified name.</para>
</summary>
<param name="name">A <see cref="T:System.String" qualify="true" /> specifying the qualified name of the attribute.</param>
<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>
</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 abstract string Item[string localName, string namespaceName] { get; };" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localName" Type="System.String" />
<Parameter Name="namespaceName" Type="System.String" />
</Parameters>
<Docs>
<summary>
<para>Retrieves the value of the attribute with the specified local name and namespace URI.</para>
</summary>
<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>
<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>
<param name="localName">To be added.</param>
<param name="namespaceName">To be added.</param>
</Docs>
<Excluded>0</Excluded>
</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>
</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>
</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>
</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>
</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>
</Member>
</Members>
<TypeExcluded>0</TypeExcluded>
</Type>
|