File size: 112,475 Bytes
8e6f15c | 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 | <?xml version="1.0"?>
<doc>
<assembly>
<name>System.Text.Encodings.Web</name>
</assembly>
<members>
<member name="M:System.IO.TextWriterExtensions.WritePartialString(System.IO.TextWriter,System.String,System.Int32,System.Int32)">
<summary>
Writes a partial string (given offset and count) to the underlying TextWriter.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.AsciiByteMap">
<summary>
A lookup map that maps individual ASCII chars to a single byte.
Storing a 0 byte indicates that no mapping exists for this input.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.AsciiByteMap.TryLookup(System.Text.Rune,System.Byte@)">
<summary>
Returns false if <paramref name="key"/> is non-ASCII or if it
maps to a zero value.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.AllowedBmpCodePointsBitmap">
<summary>
A bitmap which represents all 64k codepoints in the
Basic Multilingual Plane.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.AllowedBmpCodePointsBitmap.AllowChar(System.Char)">
<summary>
Adds the given <see cref="T:System.Char"/> to the bitmap's allow list.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.AllowedBmpCodePointsBitmap.ForbidChar(System.Char)">
<summary>
Removes the given <see cref="T:System.Char"/> from the bitmap's allow list.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.AllowedBmpCodePointsBitmap.ForbidHtmlCharacters">
<summary>
Removes all HTML-sensitive characters from the bitmap's allow list.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.AllowedBmpCodePointsBitmap.ForbidUndefinedCharacters">
<summary>
Removes from the bitmap's allow list all code points which aren't mapped to defined characters
or which are otherwise always disallowed.
</summary>
<remarks>
Always-disallowed categories include Cc, Cs, Co, Cn, Zs [except U+0020 SPACE], Zl, and Zp.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.AllowedBmpCodePointsBitmap.IsCharAllowed(System.Char)">
<summary>
Queries the bitmap to see if the given <see cref="T:System.Char"/> is in the allow list.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.AllowedBmpCodePointsBitmap.IsCodePointAllowed(System.UInt32)">
<summary>
Queries the bitmap to see if the given code point is in the allow list.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.OptimizedInboxTextEncoder">
<summary>
Allows efficient escaping for the library's built-in types (HTML, URL, JS).
Assumes the following:
(a) All C0 and C1 code points are disallowed.
(b) Escaping 1 ASCII input character results in no more than 6 output characters.
(c) All Unicode scalar values may be represented in escaped form.
(d) The escaped form of any Unicode scalar value consists of only ASCII characters.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.OptimizedInboxTextEncoder.AllowedAsciiCodePoints">
<summary>
A bitmap which represents allowed ASCII code points.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.OptimizedInboxTextEncoder.AsciiPreescapedData">
<summary>
A bitmap which represents the 64-bit pre-escaped form of the ASCII code points.
A pre-escaped code point has the form [ WW 00 FF EE DD CC BB AA ],
where AA - FF are the six-ASCII-byte escaped representation of the
code point, zero-padded at the end. The high byte of the pre-escaped form
is the number of non-zero bytes which make up the pre-escaped data.
Example: If the escaped form of "@" is "%40", the pre-escaped form will be:
0x30_00_00_00_00_30_34_25. Iterate over the least significant bytes one-by-one
to reconstruct the escaped representation, stopping when you hit a null byte.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.OptimizedInboxTextEncoder.IsScalarValueAllowed(System.Text.Rune)">
<summary>
Given a scalar value, returns a value stating whether that value is present
in this encoder's allow list.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.SpanUtility">
<summary>
Contains helpers for manipulating spans so that we can keep unsafe code out of the common path.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.SpanUtility.TryWriteBytes(System.Span{System.Byte},System.Byte,System.Byte,System.Byte,System.Byte)">
<summary>
Tries writing four bytes to the span. If success, returns true. If the span is not large
enough to hold four bytes, leaves the span unchanged and returns false.
</summary>
<remarks>
Parameters are intended to be constant values.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.SpanUtility.TryWriteBytes(System.Span{System.Byte},System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
<summary>
Tries writing five bytes to the span. If success, returns true. If the span is not large
enough to hold five bytes, leaves the span unchanged and returns false.
</summary>
<remarks>
Parameters are intended to be constant values.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.SpanUtility.TryWriteBytes(System.Span{System.Byte},System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
<summary>
Tries writing six bytes to the span. If success, returns true. If the span is not large
enough to hold six bytes, leaves the span unchanged and returns false.
</summary>
<remarks>
Parameters are intended to be constant values.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.SpanUtility.TryWriteChars(System.Span{System.Char},System.Char,System.Char,System.Char,System.Char)">
<summary>
Tries writing four chars to the span. If success, returns true. If the span is not large
enough to hold four chars, leaves the span unchanged and returns false.
</summary>
<remarks>
Parameters are intended to be constant values.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.SpanUtility.TryWriteChars(System.Span{System.Char},System.Char,System.Char,System.Char,System.Char,System.Char)">
<summary>
Tries writing five chars to the span. If success, returns true. If the span is not large
enough to hold five chars, leaves the span unchanged and returns false.
</summary>
<remarks>
Parameters are intended to be constant values.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.SpanUtility.TryWriteChars(System.Span{System.Char},System.Char,System.Char,System.Char,System.Char,System.Char,System.Char)">
<summary>
Tries writing six chars to the span. If success, returns true. If the span is not large
enough to hold six chars, leaves the span unchanged and returns false.
</summary>
<remarks>
Parameters are intended to be constant values.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.SpanUtility.TryWriteUInt64LittleEndian(System.Span{System.Byte},System.Int32,System.UInt64)">
<summary>
Tries writing a 64-bit value as little endian to the span. If success, returns true. If
the span is not large enough to hold 8 bytes, leaves the span unchanged and returns false.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.ScalarEscaperBase">
<summary>
A class that can escape a scalar value and write either UTF-16 or UTF-8 format.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.HtmlEncoder">
<summary>
Represents a type used to do HTML encoding.
</summary>
</member>
<member name="P:System.Text.Encodings.Web.HtmlEncoder.Default">
<summary>
Returns a default built-in instance of <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>
Creates a new instance of HtmlEncoder with provided settings.
</summary>
<param name="settings">Settings used to control how the created <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/> encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/>.</returns>
</member>
<member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>
Creates a new instance of HtmlEncoder specifying character to be encoded.
</summary>
<param name="allowedRanges">Set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/></returns>
<remarks>Some characters in <paramref name="allowedRanges"/> might still get encoded, i.e. this parameter is just telling the encoder what ranges it is allowed to not encode, not what characters it must not encode.</remarks>
</member>
<member name="T:System.Text.Encodings.Web.JavaScriptEncoder">
<summary>
Represents a type used to do JavaScript encoding/escaping.
</summary>
</member>
<member name="P:System.Text.Encodings.Web.JavaScriptEncoder.Default">
<summary>
Returns a default built-in instance of <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/>.
</summary>
</member>
<member name="P:System.Text.Encodings.Web.JavaScriptEncoder.UnsafeRelaxedJsonEscaping">
<summary>
Returns a built-in instance of <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/> that is less strict about what gets encoded.
</summary>
<remarks>
<para>
Unlike the <see cref="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"/>, this encoder instance does not escape HTML-sensitive characters like <, >, &, etc. and hence must be used cautiously
(for example, if the output data is within a response whose content-type is known with a charset set to UTF-8).
</para>
<para>
Unlike the <see cref="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"/>, the quotation mark is encoded as \" rather than \u0022.
</para>
<para>
Unlike the <see cref="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"/> (which only allows <see cref="P:System.Text.Unicode.UnicodeRanges.BasicLatin"/>), using this encoder instance allows <see cref="P:System.Text.Unicode.UnicodeRanges.All"/> to go through unescaped.
</para>
<para>
Unlike the <see cref="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"/>, this encoder instance allows some other characters to go through unescaped (for example, '+'), and hence must be used cautiously.
</para>
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>
Creates a new instance of JavaScriptEncoder with provided settings.
</summary>
<param name="settings">Settings used to control how the created <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/> encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/>.</returns>
</member>
<member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>
Creates a new instance of JavaScriptEncoder specifying character to be encoded.
</summary>
<param name="allowedRanges">Set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"/>.</returns>
<remarks>Some characters in <paramref name="allowedRanges"/> might still get encoded, i.e. this parameter is just telling the encoder what ranges it is allowed to not encode, not what characters it must not encode.</remarks>
</member>
<member name="T:System.Text.Encodings.Web.TextEncoder">
<summary>
An abstraction representing various text encoders.
</summary>
<remarks>
TextEncoder subclasses can be used to do HTML encoding, URI encoding, and JavaScript encoding.
Instances of such subclasses can be accessed using <see cref="P:System.Text.Encodings.Web.HtmlEncoder.Default"/>, <see cref="P:System.Text.Encodings.Web.UrlEncoder.Default"/>, and <see cref="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"/>.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)">
<summary>
Encodes a Unicode scalar into a buffer.
</summary>
<param name="unicodeScalar">Unicode scalar.</param>
<param name="buffer">The destination of the encoded text.</param>
<param name="bufferLength">Length of the destination <paramref name="buffer"/> in chars.</param>
<param name="numberOfCharactersWritten">Number of characters written to the <paramref name="buffer"/>.</param>
<returns>Returns false if <paramref name="bufferLength"/> is too small to fit the encoded text, otherwise returns true.</returns>
<remarks>This method is seldom called directly. One of the TextEncoder.Encode overloads should be used instead.
Implementations of <see cref="T:System.Text.Encodings.Web.TextEncoder"/> need to be thread safe and stateless.
</remarks>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)">
<summary>
Finds index of the first character that needs to be encoded.
</summary>
<param name="text">The text buffer to search.</param>
<param name="textLength">The number of characters in the <paramref name="text"/>.</param>
<returns></returns>
<remarks>This method is seldom called directly. It's used by higher level helper APIs.</remarks>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.WillEncode(System.Int32)">
<summary>
Determines if a given Unicode scalar will be encoded.
</summary>
<param name="unicodeScalar">Unicode scalar.</param>
<returns>Returns true if the <paramref name="unicodeScalar"/> will be encoded by this encoder, otherwise returns false.</returns>
</member>
<member name="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter">
<summary>
Maximum number of characters that this encoder can generate for each input character.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.String)">
<summary>
Encodes the supplied string and returns the encoded text as a new string.
</summary>
<param name="value">String to encode.</param>
<returns>Encoded string.</returns>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String)">
<summary>
Encodes the supplied string into a <see cref="T:System.IO.TextWriter"/>.
</summary>
<param name="output">Encoded text is written to this output.</param>
<param name="value">String to be encoded.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)">
<summary>
Encodes a substring into a <see cref="T:System.IO.TextWriter"/>.
</summary>
<param name="output">Encoded text is written to this output.</param>
<param name="value">String whose substring is to be encoded.</param>
<param name="startIndex">The index where the substring starts.</param>
<param name="characterCount">Number of characters in the substring.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>
Encodes characters from an array into a <see cref="T:System.IO.TextWriter"/>.
</summary>
<param name="output">Encoded text is written to the output.</param>
<param name="value">Array of characters to be encoded.</param>
<param name="startIndex">The index where the substring starts.</param>
<param name="characterCount">Number of characters in the substring.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.EncodeUtf8(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int32@,System.Boolean)">
<summary>
Encodes the supplied UTF-8 text.
</summary>
<param name="utf8Source">A source buffer containing the UTF-8 text to encode.</param>
<param name="utf8Destination">The destination buffer to which the encoded form of <paramref name="utf8Source"/>
will be written.</param>
<param name="bytesConsumed">The number of bytes consumed from the <paramref name="utf8Source"/> buffer.</param>
<param name="bytesWritten">The number of bytes written to the <paramref name="utf8Destination"/> buffer.</param>
<param name="isFinalBlock"><see langword="true"/> if there is further source data that needs to be encoded;
<see langword="false"/> if there is no further source data that needs to be encoded.</param>
<returns>An <see cref="T:System.Buffers.OperationStatus"/> describing the result of the encoding operation.</returns>
<remarks>The buffers <paramref name="utf8Source"/> and <paramref name="utf8Destination"/> must not overlap.</remarks>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.ReadOnlySpan{System.Char},System.Span{System.Char},System.Int32@,System.Int32@,System.Boolean)">
<summary>
Encodes the supplied characters.
</summary>
<param name="source">A source buffer containing the characters to encode.</param>
<param name="destination">The destination buffer to which the encoded form of <paramref name="source"/>
will be written.</param>
<param name="charsConsumed">The number of characters consumed from the <paramref name="source"/> buffer.</param>
<param name="charsWritten">The number of characters written to the <paramref name="destination"/> buffer.</param>
<param name="isFinalBlock"><see langword="true"/> if there is further source data that needs to be encoded;
<see langword="false"/> if there is no further source data that needs to be encoded.</param>
<returns>An <see cref="T:System.Buffers.OperationStatus"/> describing the result of the encoding operation.</returns>
<remarks>The buffers <paramref name="source"/> and <paramref name="destination"/> must not overlap.</remarks>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.FindFirstCharacterToEncodeUtf8(System.ReadOnlySpan{System.Byte})">
<summary>
Given a UTF-8 text input buffer, finds the first element in the input buffer which would be
escaped by the current encoder instance.
</summary>
<param name="utf8Text">The UTF-8 text input buffer to search.</param>
<returns>
The index of the first element in <paramref name="utf8Text"/> which would be escaped by the
current encoder instance, or -1 if no data in <paramref name="utf8Text"/> requires escaping.
</returns>
</member>
<member name="T:System.Text.Encodings.Web.TextEncoderSettings">
<summary>
Represents a filter which allows only certain Unicode code points through.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor">
<summary>
Instantiates an empty filter (allows no code points through by default).
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>
Instantiates the filter by cloning the allow list of another <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Unicode.UnicodeRange[])">
<summary>
Instantiates the filter where only the character ranges specified by <paramref name="allowedRanges"/>
are allowed by the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacter(System.Char)">
<summary>
Allows the character specified by <paramref name="character"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacters(System.Char[])">
<summary>
Allows all characters specified by <paramref name="characters"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCodePoints(System.Collections.Generic.IEnumerable{System.Int32})">
<summary>
Allows all code points specified by <paramref name="codePoints"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRange(System.Text.Unicode.UnicodeRange)">
<summary>
Allows all characters specified by <paramref name="range"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRanges(System.Text.Unicode.UnicodeRange[])">
<summary>
Allows all characters specified by <paramref name="ranges"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.Clear">
<summary>
Resets this settings object by disallowing all characters.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacter(System.Char)">
<summary>
Disallows the character <paramref name="character"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacters(System.Char[])">
<summary>
Disallows all characters specified by <paramref name="characters"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRange(System.Text.Unicode.UnicodeRange)">
<summary>
Disallows all characters specified by <paramref name="range"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRanges(System.Text.Unicode.UnicodeRange[])">
<summary>
Disallows all characters specified by <paramref name="ranges"/> through the filter.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.GetAllowedCodePoints">
<summary>
Gets an enumeration of all allowed code points.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.GetAllowedCodePointsBitmap">
<summary>
Retrieves the bitmap of allowed characters from this settings object.
The data is returned readonly byref.
</summary>
</member>
<member name="T:System.Text.Encodings.Web.UrlEncoder">
<summary>
Represents a type used to do URL encoding.
</summary>
</member>
<member name="P:System.Text.Encodings.Web.UrlEncoder.Default">
<summary>
Returns a default built-in instance of <see cref="T:System.Text.Encodings.Web.UrlEncoder"/>.
</summary>
</member>
<member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>
Creates a new instance of UrlEncoder with provided settings.
</summary>
<param name="settings">Settings used to control how the created <see cref="T:System.Text.Encodings.Web.UrlEncoder"/> encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"/>.</returns>
</member>
<member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>
Creates a new instance of UrlEncoder specifying character to be encoded.
</summary>
<param name="allowedRanges">Set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"/>.</returns>
<remarks>Some characters in <paramref name="allowedRanges"/> might still get encoded, i.e. this parameter is just telling the encoder what ranges it is allowed to not encode, not what characters it must not encode.</remarks>
</member>
<member name="T:System.Text.Unicode.UnicodeHelpers">
<summary>
Contains helpers for dealing with Unicode code points.
</summary>
</member>
<member name="F:System.Text.Unicode.UnicodeHelpers.UNICODE_LAST_CODEPOINT">
<summary>
The last code point defined by the Unicode specification.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.GetDefinedBmpCodePointsBitmapLittleEndian">
<summary>
Returns a bitmap of all BMP code points as a series of little-endian 32-bit values.
On other-endian architectures, caller must convert each 32-bit integer to native endianness
before using the data.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.GetUtf8RepresentationForScalarValue(System.UInt32)">
<summary>
Given a Unicode scalar value, returns the UTF-8 representation of the value.
The return value's bytes should be popped from the LSB.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeHelpers.IsSupplementaryCodePoint(System.Int32)">
<summary>
Determines whether the given scalar value is in the supplementary plane and thus
requires 2 characters to be represented in UTF-16 (as a surrogate pair).
</summary>
</member>
<member name="T:System.Text.Unicode.UnicodeRange">
<summary>
Represents a contiguous range of Unicode code points.
</summary>
<remarks>
Currently only the Basic Multilingual Plane is supported.
</remarks>
</member>
<member name="M:System.Text.Unicode.UnicodeRange.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"/>.
</summary>
<param name="firstCodePoint">The first code point in the range.</param>
<param name="length">The number of code points in the range.</param>
</member>
<member name="P:System.Text.Unicode.UnicodeRange.FirstCodePoint">
<summary>
The first code point in this range.
</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRange.Length">
<summary>
The number of code points in this range.
</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeRange.Create(System.Char,System.Char)">
<summary>
Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"/> from a span of characters.
</summary>
<param name="firstCharacter">The first character in the range.</param>
<param name="lastCharacter">The last character in the range.</param>
<returns>The <see cref="T:System.Text.Unicode.UnicodeRange"/> representing this span.</returns>
</member>
<member name="T:System.Text.Unicode.UnicodeRanges">
<summary>
Contains predefined <see cref="T:System.Text.Unicode.UnicodeRange"/> instances which correspond to blocks
from the Unicode 7.0 specification.
</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.None">
<summary>
An empty <see cref="T:System.Text.Unicode.UnicodeRange"/>. This range contains no code points.
</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.All">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> which contains all characters in the Unicode Basic
Multilingual Plane (U+0000..U+FFFF).
</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BasicLatin">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Basic Latin' Unicode block (U+0000..U+007F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Latin1Supplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin-1 Supplement' Unicode block (U+0080..U+00FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0080.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-A' Unicode block (U+0100..U+017F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0100.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-B' Unicode block (U+0180..U+024F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0180.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.IpaExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'IPA Extensions' Unicode block (U+0250..U+02AF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0250.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SpacingModifierLetters">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Spacing Modifier Letters' Unicode block (U+02B0..U+02FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U02B0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarks">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Diacritical Marks' Unicode block (U+0300..U+036F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0300.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GreekandCoptic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Greek and Coptic' Unicode block (U+0370..U+03FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0370.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Cyrillic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic' Unicode block (U+0400..U+04FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0400.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic Supplement' Unicode block (U+0500..U+052F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0500.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Armenian">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Armenian' Unicode block (U+0530..U+058F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0530.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Hebrew">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hebrew' Unicode block (U+0590..U+05FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0590.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Arabic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic' Unicode block (U+0600..U+06FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0600.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Syriac">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Syriac' Unicode block (U+0700..U+074F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0700.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Supplement' Unicode block (U+0750..U+077F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0750.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Thaana">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Thaana' Unicode block (U+0780..U+07BF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0780.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.NKo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'NKo' Unicode block (U+07C0..U+07FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U07C0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Samaritan">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Samaritan' Unicode block (U+0800..U+083F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0800.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Mandaic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Mandaic' Unicode block (U+0840..U+085F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0840.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SyriacSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Syriac Supplement' Unicode block (U+0860..U+086F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0860.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Extended-B' Unicode block (U+0870..U+089F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0870.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Extended-A' Unicode block (U+08A0..U+08FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U08A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Devanagari">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Devanagari' Unicode block (U+0900..U+097F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Bengali">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Bengali' Unicode block (U+0980..U+09FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0980.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Gurmukhi">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Gurmukhi' Unicode block (U+0A00..U+0A7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0A00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Gujarati">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Gujarati' Unicode block (U+0A80..U+0AFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0A80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Oriya">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Oriya' Unicode block (U+0B00..U+0B7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0B00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tamil">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tamil' Unicode block (U+0B80..U+0BFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0B80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Telugu">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Telugu' Unicode block (U+0C00..U+0C7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0C00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Kannada">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Kannada' Unicode block (U+0C80..U+0CFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0C80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Malayalam">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Malayalam' Unicode block (U+0D00..U+0D7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0D00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Sinhala">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Sinhala' Unicode block (U+0D80..U+0DFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0D80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Thai">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Thai' Unicode block (U+0E00..U+0E7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0E00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Lao">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Lao' Unicode block (U+0E80..U+0EFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0E80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tibetan">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tibetan' Unicode block (U+0F00..U+0FFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U0F00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Myanmar">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Myanmar' Unicode block (U+1000..U+109F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Georgian">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Georgian' Unicode block (U+10A0..U+10FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U10A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulJamo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Jamo' Unicode block (U+1100..U+11FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1100.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Ethiopic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ethiopic' Unicode block (U+1200..U+137F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1200.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EthiopicSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ethiopic Supplement' Unicode block (U+1380..U+139F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1380.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Cherokee">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cherokee' Unicode block (U+13A0..U+13FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U13A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabics">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Unified Canadian Aboriginal Syllabics' Unicode block (U+1400..U+167F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1400.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Ogham">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ogham' Unicode block (U+1680..U+169F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1680.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Runic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Runic' Unicode block (U+16A0..U+16FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U16A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tagalog">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tagalog' Unicode block (U+1700..U+171F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1700.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Hanunoo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hanunoo' Unicode block (U+1720..U+173F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1720.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Buhid">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Buhid' Unicode block (U+1740..U+175F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1740.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tagbanwa">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tagbanwa' Unicode block (U+1760..U+177F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1760.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Khmer">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Khmer' Unicode block (U+1780..U+17FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1780.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Mongolian">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Mongolian' Unicode block (U+1800..U+18AF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1800.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabicsExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Unified Canadian Aboriginal Syllabics Extended' Unicode block (U+18B0..U+18FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U18B0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Limbu">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Limbu' Unicode block (U+1900..U+194F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.TaiLe">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tai Le' Unicode block (U+1950..U+197F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1950.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.NewTaiLue">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'New Tai Lue' Unicode block (U+1980..U+19DF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1980.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.KhmerSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Khmer Symbols' Unicode block (U+19E0..U+19FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U19E0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Buginese">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Buginese' Unicode block (U+1A00..U+1A1F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1A00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.TaiTham">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tai Tham' Unicode block (U+1A20..U+1AAF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1A20.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Diacritical Marks Extended' Unicode block (U+1AB0..U+1AFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1AB0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Balinese">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Balinese' Unicode block (U+1B00..U+1B7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1B00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Sundanese">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Sundanese' Unicode block (U+1B80..U+1BBF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1B80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Batak">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Batak' Unicode block (U+1BC0..U+1BFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1BC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Lepcha">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Lepcha' Unicode block (U+1C00..U+1C4F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1C00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.OlChiki">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ol Chiki' Unicode block (U+1C50..U+1C7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1C50.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedC">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic Extended-C' Unicode block (U+1C80..U+1C8F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1C80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeorgianExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Georgian Extended' Unicode block (U+1C90..U+1CBF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1C90.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SundaneseSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Sundanese Supplement' Unicode block (U+1CC0..U+1CCF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1CC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.VedicExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Vedic Extensions' Unicode block (U+1CD0..U+1CFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1CD0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Phonetic Extensions' Unicode block (U+1D00..U+1D7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1D00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensionsSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Phonetic Extensions Supplement' Unicode block (U+1D80..U+1DBF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1D80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Diacritical Marks Supplement' Unicode block (U+1DC0..U+1DFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1DC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedAdditional">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended Additional' Unicode block (U+1E00..U+1EFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1E00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GreekExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Greek Extended' Unicode block (U+1F00..U+1FFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U1F00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeneralPunctuation">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'General Punctuation' Unicode block (U+2000..U+206F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SuperscriptsandSubscripts">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Superscripts and Subscripts' Unicode block (U+2070..U+209F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2070.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CurrencySymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Currency Symbols' Unicode block (U+20A0..U+20CF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U20A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksforSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Diacritical Marks for Symbols' Unicode block (U+20D0..U+20FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U20D0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LetterlikeSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Letterlike Symbols' Unicode block (U+2100..U+214F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2100.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.NumberForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Number Forms' Unicode block (U+2150..U+218F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2150.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Arrows">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arrows' Unicode block (U+2190..U+21FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2190.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MathematicalOperators">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Mathematical Operators' Unicode block (U+2200..U+22FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2200.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousTechnical">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Technical' Unicode block (U+2300..U+23FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2300.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ControlPictures">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Control Pictures' Unicode block (U+2400..U+243F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2400.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.OpticalCharacterRecognition">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Optical Character Recognition' Unicode block (U+2440..U+245F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2440.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EnclosedAlphanumerics">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Enclosed Alphanumerics' Unicode block (U+2460..U+24FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2460.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BoxDrawing">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Box Drawing' Unicode block (U+2500..U+257F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2500.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BlockElements">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Block Elements' Unicode block (U+2580..U+259F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2580.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeometricShapes">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Geometric Shapes' Unicode block (U+25A0..U+25FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U25A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Symbols' Unicode block (U+2600..U+26FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2600.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Dingbats">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Dingbats' Unicode block (U+2700..U+27BF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2700.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Mathematical Symbols-A' Unicode block (U+27C0..U+27EF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U27C0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Supplemental Arrows-A' Unicode block (U+27F0..U+27FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U27F0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BraillePatterns">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Braille Patterns' Unicode block (U+2800..U+28FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2800.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Supplemental Arrows-B' Unicode block (U+2900..U+297F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Mathematical Symbols-B' Unicode block (U+2980..U+29FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2980.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SupplementalMathematicalOperators">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Supplemental Mathematical Operators' Unicode block (U+2A00..U+2AFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2A00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbolsandArrows">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Miscellaneous Symbols and Arrows' Unicode block (U+2B00..U+2BFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2B00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Glagolitic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Glagolitic' Unicode block (U+2C00..U+2C5F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2C00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedC">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-C' Unicode block (U+2C60..U+2C7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2C60.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Coptic">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Coptic' Unicode block (U+2C80..U+2CFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2C80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeorgianSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Georgian Supplement' Unicode block (U+2D00..U+2D2F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2D00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tifinagh">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tifinagh' Unicode block (U+2D30..U+2D7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2D30.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ethiopic Extended' Unicode block (U+2D80..U+2DDF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2D80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic Extended-A' Unicode block (U+2DE0..U+2DFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2DE0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SupplementalPunctuation">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Supplemental Punctuation' Unicode block (U+2E00..U+2E7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2E00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkRadicalsSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Radicals Supplement' Unicode block (U+2E80..U+2EFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2E80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.KangxiRadicals">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Kangxi Radicals' Unicode block (U+2F00..U+2FDF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2F00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.IdeographicDescriptionCharacters">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ideographic Description Characters' Unicode block (U+2FF0..U+2FFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U2FF0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkSymbolsandPunctuation">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Symbols and Punctuation' Unicode block (U+3000..U+303F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U3000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Hiragana">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hiragana' Unicode block (U+3040..U+309F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U3040.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Katakana">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Katakana' Unicode block (U+30A0..U+30FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U30A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Bopomofo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Bopomofo' Unicode block (U+3100..U+312F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U3100.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulCompatibilityJamo">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Compatibility Jamo' Unicode block (U+3130..U+318F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U3130.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Kanbun">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Kanbun' Unicode block (U+3190..U+319F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U3190.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.BopomofoExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Bopomofo Extended' Unicode block (U+31A0..U+31BF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U31A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkStrokes">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Strokes' Unicode block (U+31C0..U+31EF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U31C0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.KatakanaPhoneticExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Katakana Phonetic Extensions' Unicode block (U+31F0..U+31FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U31F0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EnclosedCjkLettersandMonths">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Enclosed CJK Letters and Months' Unicode block (U+3200..U+32FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U3200.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibility">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Compatibility' Unicode block (U+3300..U+33FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U3300.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographsExtensionA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Unified Ideographs Extension A' Unicode block (U+3400..U+4DBF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U3400.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.YijingHexagramSymbols">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Yijing Hexagram Symbols' Unicode block (U+4DC0..U+4DFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U4DC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographs">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Unified Ideographs' Unicode block (U+4E00..U+9FFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/U4E00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.YiSyllables">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Yi Syllables' Unicode block (U+A000..U+A48F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA000.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.YiRadicals">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Yi Radicals' Unicode block (U+A490..U+A4CF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA490.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Lisu">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Lisu' Unicode block (U+A4D0..U+A4FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA4D0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Vai">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Vai' Unicode block (U+A500..U+A63F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA500.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cyrillic Extended-B' Unicode block (U+A640..U+A69F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA640.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Bamum">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Bamum' Unicode block (U+A6A0..U+A6FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA6A0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ModifierToneLetters">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Modifier Tone Letters' Unicode block (U+A700..U+A71F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA700.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedD">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-D' Unicode block (U+A720..U+A7FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA720.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SylotiNagri">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Syloti Nagri' Unicode block (U+A800..U+A82F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA800.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CommonIndicNumberForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Common Indic Number Forms' Unicode block (U+A830..U+A83F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA830.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Phagspa">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Phags-pa' Unicode block (U+A840..U+A87F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA840.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Saurashtra">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Saurashtra' Unicode block (U+A880..U+A8DF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA880.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.DevanagariExtended">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Devanagari Extended' Unicode block (U+A8E0..U+A8FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA8E0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.KayahLi">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Kayah Li' Unicode block (U+A900..U+A92F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Rejang">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Rejang' Unicode block (U+A930..U+A95F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA930.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Jamo Extended-A' Unicode block (U+A960..U+A97F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA960.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Javanese">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Javanese' Unicode block (U+A980..U+A9DF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA980.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Myanmar Extended-B' Unicode block (U+A9E0..U+A9FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UA9E0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Cham">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cham' Unicode block (U+AA00..U+AA5F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UAA00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Myanmar Extended-A' Unicode block (U+AA60..U+AA7F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UAA60.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.TaiViet">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Tai Viet' Unicode block (U+AA80..U+AADF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UAA80.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayekExtensions">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Meetei Mayek Extensions' Unicode block (U+AAE0..U+AAFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UAAE0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtendedA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Ethiopic Extended-A' Unicode block (U+AB00..U+AB2F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UAB00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedE">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Latin Extended-E' Unicode block (U+AB30..U+AB6F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UAB30.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CherokeeSupplement">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Cherokee Supplement' Unicode block (U+AB70..U+ABBF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UAB70.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayek">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Meetei Mayek' Unicode block (U+ABC0..U+ABFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UABC0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulSyllables">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Syllables' Unicode block (U+AC00..U+D7AF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UAC00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Hangul Jamo Extended-B' Unicode block (U+D7B0..U+D7FF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UD7B0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityIdeographs">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Compatibility Ideographs' Unicode block (U+F900..U+FAFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UF900.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.AlphabeticPresentationForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Alphabetic Presentation Forms' Unicode block (U+FB00..U+FB4F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFB00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsA">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Presentation Forms-A' Unicode block (U+FB50..U+FDFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFB50.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.VariationSelectors">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Variation Selectors' Unicode block (U+FE00..U+FE0F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFE00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.VerticalForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Vertical Forms' Unicode block (U+FE10..U+FE1F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFE10.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CombiningHalfMarks">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Combining Half Marks' Unicode block (U+FE20..U+FE2F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFE20.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'CJK Compatibility Forms' Unicode block (U+FE30..U+FE4F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFE30.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SmallFormVariants">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Small Form Variants' Unicode block (U+FE50..U+FE6F).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFE50.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsB">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Arabic Presentation Forms-B' Unicode block (U+FE70..U+FEFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFE70.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.HalfwidthandFullwidthForms">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Halfwidth and Fullwidth Forms' Unicode block (U+FF00..U+FFEF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFF00.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Specials">
<summary>
A <see cref="T:System.Text.Unicode.UnicodeRange"/> corresponding to the 'Specials' Unicode block (U+FFF0..U+FFFF).
</summary>
<remarks>
See https://www.unicode.org/charts/PDF/UFFF0.pdf for the full set of characters in this block.
</remarks>
</member>
<member name="M:System.Text.UnicodeDebug.ToHexString(System.UInt32)">
<summary>
Formats a code point as the hex string "U+XXXX".
</summary>
<remarks>
The input value doesn't have to be a real code point in the Unicode codespace. It can be any integer.
</remarks>
</member>
<member name="F:System.Text.UnicodeUtility.ReplacementChar">
<summary>
The Unicode replacement character U+FFFD.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.GetPlane(System.UInt32)">
<summary>
Returns the Unicode plane (0 through 16, inclusive) which contains this code point.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.GetScalarFromUtf16SurrogatePair(System.UInt32,System.UInt32)">
<summary>
Returns a Unicode scalar value from two code points representing a UTF-16 surrogate pair.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.GetUtf16SequenceLength(System.UInt32)">
<summary>
Given a Unicode scalar value, gets the number of UTF-16 code units required to represent this value.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.GetUtf16SurrogatesFromSupplementaryPlaneScalar(System.UInt32,System.Char@,System.Char@)">
<summary>
Decomposes an astral Unicode scalar into UTF-16 high and low surrogate code units.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.GetUtf8SequenceLength(System.UInt32)">
<summary>
Given a Unicode scalar value, gets the number of UTF-8 code units required to represent this value.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.IsAsciiCodePoint(System.UInt32)">
<summary>
Returns <see langword="true"/> iff <paramref name="value"/> is an ASCII
character ([ U+0000..U+007F ]).
</summary>
<remarks>
Per http://www.unicode.org/glossary/#ASCII, ASCII is only U+0000..U+007F.
</remarks>
</member>
<member name="M:System.Text.UnicodeUtility.IsBmpCodePoint(System.UInt32)">
<summary>
Returns <see langword="true"/> iff <paramref name="value"/> is in the
Basic Multilingual Plane (BMP).
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.IsHighSurrogateCodePoint(System.UInt32)">
<summary>
Returns <see langword="true"/> iff <paramref name="value"/> is a UTF-16 high surrogate code point,
i.e., is in [ U+D800..U+DBFF ], inclusive.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.IsInRangeInclusive(System.UInt32,System.UInt32,System.UInt32)">
<summary>
Returns <see langword="true"/> iff <paramref name="value"/> is between
<paramref name="lowerBound"/> and <paramref name="upperBound"/>, inclusive.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.IsLowSurrogateCodePoint(System.UInt32)">
<summary>
Returns <see langword="true"/> iff <paramref name="value"/> is a UTF-16 low surrogate code point,
i.e., is in [ U+DC00..U+DFFF ], inclusive.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.IsSurrogateCodePoint(System.UInt32)">
<summary>
Returns <see langword="true"/> iff <paramref name="value"/> is a UTF-16 surrogate code point,
i.e., is in [ U+D800..U+DFFF ], inclusive.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.IsValidCodePoint(System.UInt32)">
<summary>
Returns <see langword="true"/> iff <paramref name="codePoint"/> is a valid Unicode code
point, i.e., is in [ U+0000..U+10FFFF ], inclusive.
</summary>
</member>
<member name="M:System.Text.UnicodeUtility.IsValidUnicodeScalar(System.UInt32)">
<summary>
Returns <see langword="true"/> iff <paramref name="value"/> is a valid Unicode scalar
value, i.e., is in [ U+0000..U+D7FF ], inclusive; or [ U+E000..U+10FFFF ], inclusive.
</summary>
</member>
<member name="M:System.Text.ValueStringBuilder.GetPinnableReference">
<summary>
Get a pinnable reference to the builder.
Does not ensure there is a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/>
This overload is pattern matched in the C# 7.3+ compiler so you can omit
the explicit method call, and write eg "fixed (char* c = builder)"
</summary>
</member>
<member name="M:System.Text.ValueStringBuilder.GetPinnableReference(System.Boolean)">
<summary>
Get a pinnable reference to the builder.
</summary>
<param name="terminate">Ensures that the builder has a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/></param>
</member>
<member name="P:System.Text.ValueStringBuilder.RawChars">
<summary>Returns the underlying storage of the builder.</summary>
</member>
<member name="M:System.Text.ValueStringBuilder.AsSpan(System.Boolean)">
<summary>
Returns a span around the contents of the builder.
</summary>
<param name="terminate">Ensures that the builder has a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/></param>
</member>
<member name="M:System.Text.ValueStringBuilder.Grow(System.Int32)">
<summary>
Resize the internal buffer either by doubling current buffer size or
by adding <paramref name="additionalCapacityBeyondPos"/> to
<see cref="F:System.Text.ValueStringBuilder._pos"/> whichever is greater.
</summary>
<param name="additionalCapacityBeyondPos">
Number of chars requested beyond current position.
</param>
</member>
<member name="P:System.HexConverter.CharToHexLookup">
<summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>
</member>
<member name="P:System.SR.TextEncoderDoesNotImplementMaxOutputCharsPerInputChar">
<summary>TextEncoder does not implement MaxOutputCharsPerInputChar correctly.</summary>
</member>
<member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
<summary>
Attribute used to indicate a source generator should create a function for marshalling
arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
</summary>
<remarks>
This attribute is meaningless if the source generator associated with it is not enabled.
The current built-in source generator only supports C# and only supplies an implementation when
applied to static, partial, non-generic methods.
</remarks>
</member>
<member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
</summary>
<param name="libraryName">Name of the library containing the import.</param>
</member>
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
<summary>
Gets the name of the library containing the import.
</summary>
</member>
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
<summary>
Gets or sets the name of the entry point to be called.
</summary>
</member>
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
<summary>
Gets or sets how to marshal string arguments to the method.
</summary>
<remarks>
If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
<see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
</remarks>
</member>
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
<summary>
Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
</summary>
<remarks>
If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
</remarks>
</member>
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
<summary>
Gets or sets whether the callee sets an error (SetLastError on Windows or errno
on other platforms) before returning from the attributed method.
</summary>
</member>
<member name="T:System.Runtime.InteropServices.StringMarshalling">
<summary>
Specifies how strings should be marshalled for generated p/invokes
</summary>
</member>
<member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
<summary>
Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
</summary>
</member>
<member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
<summary>
Use the platform-provided UTF-8 marshaller.
</summary>
</member>
<member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
<summary>
Use the platform-provided UTF-16 marshaller.
</summary>
</member>
</members>
</doc>
|