DnsClient.xml 154 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>DnsClient</name>
    </assembly>
    <members>
        <member name="M:DnsClient.DnsDatagramReader.ParseString(System.ArraySegment{System.Byte})">
            <summary>
            As defined in https://tools.ietf.org/html/rfc1035#section-5.1 except '()' or '@' or '.'
            </summary>
        </member>
        <member name="M:DnsClient.DnsDatagramReader.ReadIPAddress">
            <summary>
            Reads an IP address from the next 4 bytes.
            </summary>
            <returns>The <see cref="T:System.Net.IPAddress"/>.</returns>
            <exception cref="T:System.IndexOutOfRangeException">If there are no 4 bytes to read.</exception>
        </member>
        <member name="T:DnsClient.Protocol.DnsHeaderFlag">
            <summary>
            The flags of the header's second 16bit value
            </summary>
        </member>
        <member name="T:DnsClient.Protocol.AaaaRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending an IPv6 <see cref="T:System.Net.IPAddress"/>.
            <para>
            A 128 bit IPv6 address is encoded in the data portion of an AAAA
            resource record in network byte order(high-order byte first).
            </para>
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc3596#section-2.2">RFC 3596</seealso>
        </member>
        <member name="M:DnsClient.Protocol.AaaaRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Net.IPAddress)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.AaaaRecord"/> class.
            </summary>
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.AddressRecord">
            <summary>
            Base class for <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>s transporting an <see cref="T:System.Net.IPAddress"/>.
            </summary>
            <seealso cref="T:DnsClient.Protocol.ARecord"/>
            <seealso cref="T:DnsClient.Protocol.AaaaRecord"/>
        </member>
        <member name="P:DnsClient.Protocol.AddressRecord.Address">
            <summary>
            Gets the <see cref="T:System.Net.IPAddress"/>.
            </summary>
            <value>
            The address.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.AddressRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Net.IPAddress)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.AddressRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="address">The address.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> is null.</exception>
            <exception cref="T:System.ArgumentNullException">If <paramref name="address"/> or <paramref name="info"/> is null</exception>
        </member>
        <member name="M:DnsClient.Protocol.AddressRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.AfsDbRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> representing an AFS database location.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1183#section-1">RFC 1183</seealso>
            <seealso href="https://tools.ietf.org/html/rfc5864">RFC 5864</seealso>
        </member>
        <member name="P:DnsClient.Protocol.AfsDbRecord.SubType">
            <summary>
            Gets the <see cref="T:DnsClient.Protocol.AfsType"/>.
            </summary>
            <value>
            The sub type.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.AfsDbRecord.Hostname">
            <summary>
            Gets the hostname.
            </summary>
            <value>
            The hostname.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.AfsDbRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.Protocol.AfsType,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.AfsDbRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="type">The type.</param>
            <param name="name">The name.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="name"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.AfsDbRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.AfsType">
            <summary>
            Type used by <see cref="T:DnsClient.Protocol.AfsDbRecord"/>.
            </summary>
        </member>
        <member name="F:DnsClient.Protocol.AfsType.Afs">
            <summary>
            AFS is a registered trademark of Transarc Corporation
            </summary>
        </member>
        <member name="F:DnsClient.Protocol.AfsType.Dce">
            <summary>
            The Distributed Computing Environment
            </summary>
        </member>
        <member name="T:DnsClient.Protocol.ARecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending an IPv4 <see cref="T:System.Net.IPAddress"/>.
            Hosts that have multiple Internet addresses will have multiple A records.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="M:DnsClient.Protocol.ARecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Net.IPAddress)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.ARecord"/> class.
            </summary>
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.CaaRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> representing a certification authority authorization.
            <para>
            The Certification Authority Authorization (CAA) DNS Resource Record
            allows a DNS domain name holder to specify one or more Certification
            Authorities(CAs) authorized to issue certificates for that domain.
            </para>
            <para>
            CAA Resource Records allow a public Certification Authority to
            implement additional controls to reduce the risk of unintended
            certificate mis-issue.This document defines the syntax of the CAA
            record and rules for processing CAA records by certificate issuers.
            </para>
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc6844">RFC 6844</seealso>
        </member>
        <member name="P:DnsClient.Protocol.CaaRecord.Flags">
            <summary>
            One octet containing the flags.
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.CaaRecord.Tag">
            <summary>
            The property identifier, a sequence of US-ASCII characters.
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.CaaRecord.Value">
            <summary>
            A sequence of octets representing the property value.
            Property values are encoded as binary values and MAY employ sub-formats.
            </summary>
        </member>
        <member name="M:DnsClient.Protocol.CaaRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Byte,System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.CaaRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="flags">The flags.</param>
            <param name="tag">The tag.</param>
            <param name="value">The value.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="tag"/> or <paramref name="value"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.CaaRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.CNameRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> repesenting the canonical name for an alias.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.1">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.CNameRecord.CanonicalName">
            <summary>
            Gets the canonical name for an alias.
            </summary>
            <value>
            The canonical name.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.CNameRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.CNameRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="canonicalName">The canonical name.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="canonicalName"/> or <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.CNameRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.DnsResourceRecord">
            <summary>
            Base class for all resource records.
            </summary>
            <seealso cref="T:DnsClient.Protocol.ResourceRecordInfo" />
        </member>
        <member name="M:DnsClient.Protocol.DnsResourceRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.DnsResourceRecord" /> class.
            </summary>
            <param name="info">The information.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.DnsResourceRecord.ToString">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.Protocol.DnsResourceRecord.ToString(System.Int32)">
            <summary>
            Same as <c>ToString</c> but offsets the <see cref="P:DnsClient.Protocol.ResourceRecordInfo.DomainName"/>
            by <paramref name="offset"/>.
            Set the offset to -32 for example to make it print nicely in consols.
            </summary>
            <param name="offset">The offset.</param>
            <returns>A string representing this instance.</returns>
        </member>
        <member name="M:DnsClient.Protocol.DnsResourceRecord.RecordToString">
            <summary>
            Returns the actual record's value only and not the full object representation.
            <see cref="M:DnsClient.Protocol.DnsResourceRecord.ToString(System.Int32)"/> uses this to compose the full string value of this instance.
            </summary>
            <returns>A string representing this record.</returns>
        </member>
        <member name="T:DnsClient.Protocol.ResourceRecordInfo">
            <summary>
            The type represents a <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>.
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.ResourceRecordInfo.DomainName">
            <summary>
            The domain name used to query.
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.ResourceRecordInfo.RecordType">
            <summary>
            Specifies type of resource record.
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.ResourceRecordInfo.RecordClass">
            <summary>
            Specifies type class of resource record, mostly IN but can be CS, CH or HS .
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.ResourceRecordInfo.TimeToLive">
            <summary>
            The TTL value for the record set by the server.
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.ResourceRecordInfo.RawDataLength">
            <summary>
            Gets the number of bytes for this resource record stored in RDATA
            </summary>
        </member>
        <member name="M:DnsClient.Protocol.ResourceRecordInfo.#ctor(System.String,DnsClient.Protocol.ResourceRecordType,DnsClient.QueryClass,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.ResourceRecordInfo" /> class.
            </summary>
            <param name="domainName">The domain name used by the query.</param>
            <param name="recordType">Type of the record.</param>
            <param name="recordClass">The record class.</param>
            <param name="timeToLive">The time to live.</param>
            <param name="rawDataLength">Length of the raw data.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="domainName"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.ResourceRecordInfo.#ctor(DnsClient.DnsString,DnsClient.Protocol.ResourceRecordType,DnsClient.QueryClass,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.ResourceRecordInfo" /> class.
            </summary>
            <param name="domainName">The <see cref="T:DnsClient.DnsString" /> used by the query.</param>
            <param name="recordType">Type of the record.</param>
            <param name="recordClass">The record class.</param>
            <param name="timeToLive">The time to live.</param>
            <param name="rawDataLength">Length of the raw data.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="domainName" /> is null or empty.</exception>
        </member>
        <member name="T:DnsClient.Protocol.EmptyRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> not representing any specifc resource record. 
            Used if unsupported <see cref="T:DnsClient.Protocol.ResourceRecordType"/>s are found in the result.
            </summary>
            <seealso cref="T:DnsClient.Protocol.DnsResourceRecord" />
        </member>
        <member name="M:DnsClient.Protocol.EmptyRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.EmptyRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.EmptyRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.HInfoRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> used to acquire general information about a host.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc1010">RFC 1010</seealso>
        </member>
        <member name="P:DnsClient.Protocol.HInfoRecord.Cpu">
            <summary>
            Gets a <c>string</c> which specifies the CPU type.
            </summary>
            <value>
            The cpu.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.HInfoRecord.OS">
            <summary>
            Gets a <c>string</c> which specifies the operating system type.
            </summary>
            <value>
            The os.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.HInfoRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.HInfoRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="cpu">The cpu.</param>
            <param name="os">The os.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.HInfoRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.MbRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a domain name which specifies a host which has the specified mailbox.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.3">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.MbRecord.MadName">
            <summary>
            Gets the domain name which specifies a host which has the specified mailbox.
            </summary>
            <value>
            The domain name.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.MbRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.MbRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="domainName">The domain name.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="domainName"/> or <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.MbRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.MgRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a domain name which specifies a mailbox which is a member of the mail group specified by the domain name.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.6">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.MgRecord.MgName">
            <summary>
            Gets a domain name which specifies a mailbox which is a member of the mail group specified by the domain nam.
            </summary>
            <value>
            The domain name.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.MgRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.MgRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="domainName">The domain name.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="domainName"/> or <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.MgRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.MInfoRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending mailbox or mail list information.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.MInfoRecord.RMailBox">
            <summary>
            Gets the domain name which specifies a mailbox which is responsible for the mailing list or mailbox.
            </summary>
            <value>
            The domain name.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.MInfoRecord.EmailBox">
            <summary>
            Gets the domain name which specifies a mailbox which is to receive error messages related to the mailing list or mailbox.
            </summary>
            <value>
            The domain name.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.MInfoRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.MInfoRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="rmailBox">The <c>RMAILBX</c>.</param>
            <param name="emailBox">The <c>EMAILBX</c>.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="rmailBox"/> or <paramref name="emailBox"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.MInfoRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.MrRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a mailbox rename domain name.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.MrRecord.NewName">
            <summary>
            Gets the domain name which specifies a mailbox which is the proper rename of the specified mailbox.
            </summary>
            <value>
            The domain name.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.MrRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.MrRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="name">The domain name.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="name"/> or <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.MrRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.MxRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a mail exchange.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.9">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc974">RFC 974</seealso>
        </member>
        <member name="P:DnsClient.Protocol.MxRecord.Preference">
            <summary>
            Gets a 16 bit integer which specifies the preference given to
            this RR among others at the same owner.
            Lower values are preferred.
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.MxRecord.Exchange">
            <summary>
            A domain name which specifies a host willing to act as a mail exchange.
            </summary>
        </member>
        <member name="M:DnsClient.Protocol.MxRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.UInt16,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.MxRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="preference">The preference.</param>
            <param name="domainName">Name of the domain.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="domainName"/> or <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.MxRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.NsRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending an authoritative name server.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.NsRecord.NSDName">
            <summary>
            Gets the domain name which specifies a host which should be authoritative for the specified class and domain.
            </summary>
            <value>
            The domain name.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.NsRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.NsRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="name">The name.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="name"/> or <paramref name="info"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.NsRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.NullRecord">
            <summary>
            Experimental RR, not sure if the implementation is actually correct either (not tested).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.NullRecord.Anything">
            <summary>
            Gets any data stored in this record.
            </summary>
            <value>
            The byte array.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.NullRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Byte[])">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.NullRecord" /> class.
            </summary>
            <param name="info">The information.</param>
            <param name="anything">Anything.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="anything"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.NullRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.Options.OptRecord">
            <summary>
            A DNS resource record represending an IP address.
            Hosts that have multiple Internet addresses will have multiple A records.
            </summary>
        </member>
        <member name="M:DnsClient.Protocol.Options.OptRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.PtrRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a pointer. These RRs are used
            in special domains to point to some other location in the domain space.
            </summary>
            <seealso cref="T:DnsClient.Protocol.DnsResourceRecord" />
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.12">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.PtrRecord.PtrDomainName">
            <summary>
            Gets the domain name which points to some location in the domain name space.
            </summary>
            <value>
            The domain name.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.PtrRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.PtrRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="ptrDomainName">The domain name.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="ptrDomainName"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.PtrRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.ResourceRecordType">
            <summary>
            The resource record types. The <c>enum</c> contains only the types supported by this library at this moment.
            The <see cref="T:DnsClient.Protocol.ResourceRecordType"/> is used to identify any <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>.
            <para>
            Resource record types are a subset of <see cref="T:DnsClient.QueryType"/>.
            </para>
            </summary>
            <seealso cref="T:DnsClient.Protocol.DnsResourceRecord"/>
            <seealso cref="T:DnsClient.Protocol.ResourceRecordType"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.A">
            <summary>
            A host address.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.ARecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.NS">
            <summary>
            An authoritative name server.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.NsRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.MD">
            <summary>
            A mail destination (OBSOLETE - use MX).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.MF">
            <summary>
            A mail forwarder (OBSOLETE - use MX).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.CNAME">
            <summary>
            The canonical name for an alias.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.1">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.CNameRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.SOA">
            <summary>
            Marks the start of a zone of authority.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.13">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.SoaRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.MB">
            <summary>
            A mailbox domain name (EXPERIMENTAL).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.3">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.MbRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.MG">
            <summary>
            A mail group member (EXPERIMENTAL).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.6">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.MgRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.MR">
            <summary>
            A mailbox rename domain name (EXPERIMENTAL).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.MrRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.NULL">
            <summary>
            A Null resource record (EXPERIMENTAL).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.NullRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.WKS">
            <summary>
            A well known service description.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc3232">RFC 3232</seealso>
            <seealso cref="T:DnsClient.Protocol.WksRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.PTR">
            <summary>
            A domain name pointer.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.12">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.PtrRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.HINFO">
            <summary>
            Host information.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc1010">RFC 1010</seealso>
            <seealso cref="T:DnsClient.Protocol.HInfoRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.MINFO">
            <summary>
            Mailbox or mail list information.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.MInfoRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.MX">
            <summary>
            Mail exchange.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.9">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc974">RFC 974</seealso>
            <seealso cref="T:DnsClient.Protocol.MxRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.TXT">
            <summary>
            Text resources.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc1464">RFC 1464</seealso>
            <seealso cref="T:DnsClient.Protocol.TxtRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.RP">
            <summary>
            Responsible Person.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1183">RFC 1183</seealso>
            <seealso cref="T:DnsClient.Protocol.RpRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.AFSDB">
            <summary>
            AFS Data Base location.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1183#section-1">RFC 1183</seealso>
            <seealso href="https://tools.ietf.org/html/rfc5864">RFC 5864</seealso>
            <seealso cref="T:DnsClient.Protocol.AfsDbRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.AAAA">
            <summary>
            An IPv6 host address.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc3596#section-2.2">RFC 3596</seealso>
            <seealso cref="T:DnsClient.Protocol.AaaaRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.SRV">
            <summary>
            A resource record which specifies the location of the server(s) for a specific protocol and domain.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
            <seealso cref="T:DnsClient.Protocol.SrvRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.OPT">
            <summary>
            Option record.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc6891">RFC 6891</seealso>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.RRSIG">
            <summary>
            RRSIG rfc3755.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc3755">RFC 3755</seealso>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.URI">
            <summary>
            A Uniform Resource Identifier (URI) resource record.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc7553">RFC 7553</seealso>
            <seealso cref="T:DnsClient.Protocol.UriRecord"/>
        </member>
        <member name="F:DnsClient.Protocol.ResourceRecordType.CAA">
            <summary>
            A certification authority authorization.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc6844">RFC 6844</seealso>
            <seealso cref="T:DnsClient.Protocol.CaaRecord"/>
        </member>
        <member name="T:DnsClient.Protocol.RpRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a responsible person.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1183#section-2.2">RFC 1183</seealso>
        </member>
        <member name="P:DnsClient.Protocol.RpRecord.MailboxDomainName">
            <summary>
            Gets a domain name that specifies the mailbox for the responsible person.
            </summary>
            <value>
            The mailbox domain.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.RpRecord.TextDomainName">
            <summary>
            Gets a domain name for which TXT RR's exist.
            </summary>
            <value>
            The text domain.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.RpRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.RpRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="mailbox">The mailbox domain.</param>
            <param name="textName">The text domain.</param>
            <exception cref="T:System.ArgumentNullException">
            If <paramref name="info"/> or <paramref name="mailbox"/> or <paramref name="textName"/> is null.
            </exception>
        </member>
        <member name="M:DnsClient.Protocol.RpRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.SoaRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a SOA (Start Of Authority) record.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.13">RFC 1035</seealso>
        </member>
        <member name="P:DnsClient.Protocol.SoaRecord.Expire">
            <summary>
            Gets a 32 bit time value that specifies the upper limit on
            the time interval that can elapse before the zone is no
            longer authoritative.
            </summary>
            <value>
            The expiration.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SoaRecord.Minimum">
            <summary>
            Gets the unsigned 32 bit minimum TTL field that should be
            exported with any RR from this zone.
            </summary>
            <value>
            The minimum TTL.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SoaRecord.MName">
            <summary>
            Gets the domain name of the name server that was the original or primary source of data for this zone.
            </summary>
            <value>
            The doman name.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SoaRecord.Refresh">
            <summary>
            Gets a 32 bit time interval before the zone should be refreshed.
            </summary>
            <value>
            The refresh time.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SoaRecord.Retry">
            <summary>
            Gets a 32 bit time interval that should elapse before a failed refresh should be retried.
            </summary>
            <value>
            The retry time.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SoaRecord.RName">
            <summary>
            Gets a domain name which specifies the mailbox of the person responsible for this zone.
            </summary>
            <value>
            The responsible mailbox domain name.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SoaRecord.Serial">
            <summary>
            Gets the unsigned 32 bit version number of the original copy
            of the zone.Zone transfers preserve this value. This value wraps and should be compared using sequence space arithmetic.
            </summary>
            <value>
            The serial number.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.SoaRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString,DnsClient.DnsString,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.SoaRecord" /> class.
            </summary>
            <param name="info">The information.</param>
            <param name="mName">Name original domain name.</param>
            <param name="rName">Name responsible domain name.</param>
            <param name="serial">The serial number.</param>
            <param name="refresh">The refresh time.</param>
            <param name="retry">The retry time.</param>
            <param name="expire">The expire time.</param>
            <param name="minimum">The minimum TTL.</param>
            <exception cref="T:System.ArgumentNullException">
            If <paramref name="info"/> or <paramref name="mName"/> or <paramref name="rName"/> is null.
            </exception>
        </member>
        <member name="M:DnsClient.Protocol.SoaRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.SrvRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a location of the server(s) for a specific protocol and domain.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
        </member>
        <member name="P:DnsClient.Protocol.SrvRecord.Port">
            <summary>
            Gets the port.
            </summary>
            <value>
            The port.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SrvRecord.Priority">
            <summary>
            Gets the priority.
            </summary>
            <value>
            The priority.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SrvRecord.Target">
            <summary>
            Gets the target domain name.
            </summary>
            <value>
            The target.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.SrvRecord.Weight">
            <summary>
            Gets the weight.
            </summary>
            <value>
            The weight.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.SrvRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.UInt16,System.UInt16,System.UInt16,DnsClient.DnsString)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.SrvRecord" /> class.
            </summary>
            <param name="info">The information.</param>
            <param name="priority">The priority.</param>
            <param name="weigth">The weigth.</param>
            <param name="port">The port.</param>
            <param name="target">The target.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="target"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.SrvRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.TxtRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a text resource.
            <para>
            TXT RRs are used to hold descriptive text. The semantics of the text
            depends on the domain where it is found.
            </para>
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc1464">RFC 1464</seealso>
        </member>
        <member name="P:DnsClient.Protocol.TxtRecord.EscapedText">
            <summary>
            Gets the list of TXT values of this resource record in escaped form, valid for root file.
            </summary>
            <remarks>
            See https://tools.ietf.org/html/rfc1035#section-5.1 for escape details.
            </remarks>
        </member>
        <member name="P:DnsClient.Protocol.TxtRecord.Text">
            <summary>
            Gets the actual <c>UTF8</c> representation of the text values of this record.
            </summary>
        </member>
        <member name="M:DnsClient.Protocol.TxtRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.String[],System.String[])">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.TxtRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="values">The values.</param>
            <param name="utf8Values">The UTF8 values.</param>
            <exception cref="T:System.ArgumentNullException">
            If <paramref name="info"/> or <paramref name="utf8Values"/> or <paramref name="values"/> is null.
            </exception>
        </member>
        <member name="M:DnsClient.Protocol.TxtRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.UriRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a Uniform Resource Identifier (URI) resource.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc7553">RFC 7553</seealso>
        </member>
        <member name="P:DnsClient.Protocol.UriRecord.Target">
            <summary>
            Gets or sets the target Uri.
            </summary>
            <value>
            The target.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.UriRecord.Priority">
            <summary>
            Gets or sets the priority.
            </summary>
            <value>
            The priority.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.UriRecord.Weigth">
            <summary>
            Gets or sets the weigth.
            </summary>
            <value>
            The weigth.
            </value>
        </member>
        <member name="M:DnsClient.Protocol.UriRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.UInt16,System.UInt16,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.UriRecord"/> class.
            </summary>
            <param name="info">The information.</param>
            <param name="priority">The priority.</param>
            <param name="weight">The weight.</param>
            <param name="target">The target.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="target"/> is null.</exception>
        </member>
        <member name="M:DnsClient.Protocol.UriRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.Protocol.WksRecord">
            <summary>
            A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a Well Known Service description.
            </summary>
            <remarks>
            Instead of describing the supported protocols in RFCs, the list is now published on http://www.iana.org/.
            </remarks>
            <seealso href="http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml"/>
            <seealso href="https://tools.ietf.org/html/rfc3232">RFC 3232, the most current update.</seealso>
        </member>
        <member name="P:DnsClient.Protocol.WksRecord.Address">
            <summary>
            Gets the address.
            </summary>
            <value>
            The address.
            </value>
        </member>
        <member name="P:DnsClient.Protocol.WksRecord.Protocol">
            <summary>
            Gets the Protocol.
            </summary>
            <remarks>
            According to https://tools.ietf.org/html/rfc6335, only ports for TCP, UDP, DCCP and SCTP services will be assigned.
            </remarks>
        </member>
        <member name="P:DnsClient.Protocol.WksRecord.Bitmap">
            <summary>
            Gets the binary raw bitmap.
            Use <see cref="P:DnsClient.Protocol.WksRecord.Ports"/> to determine which ports are actually configured.
            </summary>
        </member>
        <member name="P:DnsClient.Protocol.WksRecord.Ports">
            <summary>
            Gets the list of assigned ports.
            <para>
            For example, if this list contains port 25, which is assigned to
            the <c>SMTP</c> service. This means that a SMTP services
            is running on <see cref="P:DnsClient.Protocol.WksRecord.Address"/> with transport <see cref="P:DnsClient.Protocol.WksRecord.Protocol"/>.
            </para>
            </summary>
            <seealso href="http://www.iana.org/assignments/port-numbers">Port numbers</seealso>
        </member>
        <member name="M:DnsClient.Protocol.WksRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Net.IPAddress,System.Int32,System.Byte[])">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.Protocol.WksRecord" /> class.
            </summary>
            <param name="info">The information.</param>
            <param name="address">The address.</param>
            <param name="protocol">The protocol.</param>
            <param name="bitmap">The raw data.</param>
            <exception cref="T:System.ArgumentNullException">
            If <paramref name="address"/> or <paramref name="info"/> or <paramref name="bitmap"/> is null.
            </exception>
        </member>
        <member name="M:DnsClient.Protocol.WksRecord.RecordToString">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.DnsOpCode">
            <summary>
            Specifies kind of query in this message.
            This value is set by the originator of a query and copied into the response.
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Query">
            <summary>
            A standard query.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.DnsOpCode.IQuery">
            <summary>
            An inverse query.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc3425">RFC 3425</seealso>
        </member>
        <member name="F:DnsClient.DnsOpCode.Status">
            <summary>
            A server status request.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged3">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Notify">
            <summary>
            Notify query.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1996">RFC 1996</seealso>
        </member>
        <member name="F:DnsClient.DnsOpCode.Update">
            <summary>
            Update query.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged6">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged7">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged8">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged9">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged10">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged11">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged12">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged13">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged14">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="F:DnsClient.DnsOpCode.Unassinged15">
            <summary>
            Unassigned value
            </summary>
        </member>
        <member name="T:DnsClient.DnsQueryExtensions">
            <summary>
            Extension methods for the <see cref="T:DnsClient.IDnsQuery"/> contract.
            <para>
            The methods implement common queries which are more complex and have some business logic.
            </para>
            </summary>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.GetHostEntry(DnsClient.IDnsQuery,System.String)">
            <summary>
            The <c>GetHostEntry</c> method queries a DNS server for the IP addresses and aliases associated with the <paramref name="hostNameOrAddress"/>.
            In case <paramref name="hostNameOrAddress"/> is an <see cref="T:System.Net.IPAddress"/>, <c>GetHostEntry</c> does a reverse lookup on that first to determine the hostname.
            <para>
            IP addresses found are returned in <see cref="P:System.Net.IPHostEntry.AddressList"/>.
            <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records are used to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/>.<br/>
            The <see cref="P:System.Net.IPHostEntry.HostName"/> property will be set to the resolved hostname or <paramref name="hostNameOrAddress"/>.
            </para>
            </summary>
            <example>
            The following code example uses the <see cref="M:DnsClient.DnsQueryExtensions.GetHostEntry(DnsClient.IDnsQuery,System.String)"/> method to resolve an IP address or hostname to an <see cref="T:System.Net.IPHostEntry"/> instance.
            <code>
            <![CDATA[
            public static void PrintHostEntry(string hostOrIp)
            {
                var lookup = new LookupClient();
                IPHostEntry hostEntry = lookup.GetHostEntry(hostOrIp);
                Console.WriteLine(hostEntry.HostName);
                foreach (var ip in hostEntry.AddressList)
                {
                    Console.WriteLine(ip);
                }
                foreach (var alias in hostEntry.Aliases)
                {
                    Console.WriteLine(alias);
                }
            }
            ]]>
            </code>
            </example>
            <remarks>
            The method has some logic to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/> list:
            <list type="bullet">
            <item>
            <term>
            In case of sub-domain queries or similar, there might be multiple <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records for one <see cref="T:System.Net.IPAddress"/>,
            </term>
            </item><item>
            <term>
            If only one <see cref="T:System.Net.IPAddress"/> is in the result set, all the aliases found will be returned.
            </term>
            </item><item>
            <term>
            If more than one <see cref="T:System.Net.IPAddress"/> is in the result set, aliases are returned only if at least one doesn't match the queried hostname.
            </term>
            </item>
            </list>
            </remarks>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="hostNameOrAddress">The <see cref="T:System.Net.IPAddress"/> or host name to query for.</param>
            <returns>
            An <see cref="T:System.Net.IPHostEntry"/> instance that contains address information about the host specified in <paramref name="hostNameOrAddress"/>.
            In case the <paramref name="hostNameOrAddress"/> could not be resolved to a domain name, this method returns <c>null</c>,
            unless <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true, then it might throw a <see cref="T:DnsClient.DnsResponseException"/>.
            </returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="hostNameOrAddress"/> is null.</exception>
            <exception cref="T:DnsClient.DnsResponseException">In case <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true and a DNS error occurs.</exception>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.GetHostEntryAsync(DnsClient.IDnsQuery,System.String)">
            <summary>
            The <c>GetHostEntryAsync</c> method queries a DNS server for the IP addresses and aliases associated with the <paramref name="hostNameOrAddress"/>.
            In case <paramref name="hostNameOrAddress"/> is an <see cref="T:System.Net.IPAddress"/>, <c>GetHostEntry</c> does a reverse lookup on that first to determine the hostname.
            <para>
            IP addresses found are returned in <see cref="P:System.Net.IPHostEntry.AddressList"/>.
            <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records are used to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/>.<br/>
            The <see cref="P:System.Net.IPHostEntry.HostName"/> property will be set to the resolved hostname or <paramref name="hostNameOrAddress"/>.
            </para>
            </summary>
            <example>
            The following code example uses the <see cref="M:DnsClient.DnsQueryExtensions.GetHostEntryAsync(DnsClient.IDnsQuery,System.String)"/> method to resolve an IP address or hostname to an <see cref="T:System.Net.IPHostEntry"/> instance.
            <code>
            <![CDATA[
            public static async Task PrintHostEntry(string hostOrIp)
            {
                var lookup = new LookupClient();
                IPHostEntry hostEntry = await lookup.GetHostEntryAsync(hostOrIp);
                Console.WriteLine(hostEntry.HostName);
                foreach (var ip in hostEntry.AddressList)
                {
                    Console.WriteLine(ip);
                }
                foreach (var alias in hostEntry.Aliases)
                {
                    Console.WriteLine(alias);
                }
            }
            ]]>
            </code>
            </example>
            <remarks>
            The method has some logic to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/> list:
            <list type="bullet">
            <item>
            <term>
            In case of sub-domain queries or similar, there might be multiple <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records for one <see cref="T:System.Net.IPAddress"/>,
            </term>
            </item><item>
            <term>
            If only one <see cref="T:System.Net.IPAddress"/> is in the result set, all the aliases found will be returned.
            </term>
            </item><item>
            <term>
            If more than one <see cref="T:System.Net.IPAddress"/> is in the result set, aliases are returned only if at least one doesn't match the queried hostname.
            </term>
            </item>
            </list>
            </remarks>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="hostNameOrAddress">The <see cref="T:System.Net.IPAddress"/> or host name to query for.</param>
            <returns>
            An <see cref="T:System.Net.IPHostEntry"/> instance that contains address information about the host specified in <paramref name="hostNameOrAddress"/>.
            In case the <paramref name="hostNameOrAddress"/> could not be resolved to a domain name, this method returns <c>null</c>,
            unless <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true, then it might throw a <see cref="T:DnsClient.DnsResponseException"/>.
            </returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="hostNameOrAddress"/> is null.</exception>
            <exception cref="T:DnsClient.DnsResponseException">In case <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true and a DNS error occurs.</exception>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.GetHostEntry(DnsClient.IDnsQuery,System.Net.IPAddress)">
            <summary>
            The <c>GetHostEntry</c> method does a reverse lookup on the IP <paramref name="address"/>,
            and queries a DNS server for the IP addresses and aliases associated with the resolved hostname.
            <para>
            IP addresses found are returned in <see cref="P:System.Net.IPHostEntry.AddressList"/>.
            <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records are used to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/>.<br/>
            The <see cref="P:System.Net.IPHostEntry.HostName"/> property will be set to the resolved hostname of the <paramref name="address"/>.
            </para>
            </summary>
            <example>
            The following code example uses the <see cref="M:DnsClient.DnsQueryExtensions.GetHostEntry(DnsClient.IDnsQuery,System.Net.IPAddress)"/> method to resolve an IP address to an <see cref="T:System.Net.IPHostEntry"/> instance.
            <code>
            <![CDATA[
            public static void PrintHostEntry(IPAddress address)
            {
                var lookup = new LookupClient();
                IPHostEntry hostEntry = lookup.GetHostEntry(address);
                Console.WriteLine(hostEntry.HostName);
                foreach (var ip in hostEntry.AddressList)
                {
                    Console.WriteLine(ip);
                }
                foreach (var alias in hostEntry.Aliases)
                {
                    Console.WriteLine(alias);
                }
            }
            ]]>
            </code>
            </example>
            <remarks>
            The method has some logic to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/> list:
            <list type="bullet">
            <item>
            <term>
            In case of sub-domain queries or similar, there might be multiple <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records for one <see cref="T:System.Net.IPAddress"/>,
            </term>
            </item><item>
            <term>
            If only one <see cref="T:System.Net.IPAddress"/> is in the result set, all the aliases found will be returned.
            </term>
            </item><item>
            <term>
            If more than one <see cref="T:System.Net.IPAddress"/> is in the result set, aliases are returned only if at least one doesn't match the queried hostname.
            </term>
            </item>
            </list>
            </remarks>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="address">The <see cref="T:System.Net.IPAddress"/> to query for.</param>
            <returns>
            An <see cref="T:System.Net.IPHostEntry"/> instance that contains address information about the host specified in <paramref name="address"/>.
            In case the <paramref name="address"/> could not be resolved to a domain name, this method returns <c>null</c>,
            unless <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true, then it might throw a <see cref="T:DnsClient.DnsResponseException"/>.
            </returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="address"/> is null.</exception>
            <exception cref="T:DnsClient.DnsResponseException">In case <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true and a DNS error occurs.</exception>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.GetHostEntryAsync(DnsClient.IDnsQuery,System.Net.IPAddress)">
            <summary>
            The <c>GetHostEntryAsync</c> method does a reverse lookup on the IP <paramref name="address"/>,
            and queries a DNS server for the IP addresses and aliases associated with the resolved hostname.
            <para>
            IP addresses found are returned in <see cref="P:System.Net.IPHostEntry.AddressList"/>.
            <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records are used to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/>.<br/>
            The <see cref="P:System.Net.IPHostEntry.HostName"/> property will be set to the resolved hostname of the <paramref name="address"/>.
            </para>
            </summary>
            <example>
            The following code example uses the <see cref="M:DnsClient.DnsQueryExtensions.GetHostEntryAsync(DnsClient.IDnsQuery,System.Net.IPAddress)"/> method to resolve an IP address to an <see cref="T:System.Net.IPHostEntry"/> instance.
            <code>
            <![CDATA[
            public static async Task PrintHostEntry(IPAddress address)
            {
                var lookup = new LookupClient();
                IPHostEntry hostEntry = await lookup.GetHostEntryAsync(address);
                Console.WriteLine(hostEntry.HostName);
                foreach (var ip in hostEntry.AddressList)
                {
                    Console.WriteLine(ip);
                }
                foreach (var alias in hostEntry.Aliases)
                {
                    Console.WriteLine(alias);
                }
            }
            ]]>
            </code>
            </example>
            <remarks>
            The method has some logic to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/> list:
            <list type="bullet">
            <item>
            <term>
            In case of sub-domain queries or similar, there might be multiple <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records for one <see cref="T:System.Net.IPAddress"/>,
            </term>
            </item><item>
            <term>
            If only one <see cref="T:System.Net.IPAddress"/> is in the result set, all the aliases found will be returned.
            </term>
            </item><item>
            <term>
            If more than one <see cref="T:System.Net.IPAddress"/> is in the result set, aliases are returned only if at least one doesn't match the queried hostname.
            </term>
            </item>
            </list>
            </remarks>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="address">The <see cref="T:System.Net.IPAddress"/> to query for.</param>
            <returns>
            An <see cref="T:System.Net.IPHostEntry"/> instance that contains address information about the host specified in <paramref name="address"/>.
            In case the <paramref name="address"/> could not be resolved to a domain name, this method returns <c>null</c>,
            unless <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true, then it might throw a <see cref="T:DnsClient.DnsResponseException"/>.
            </returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="address"/> is null.</exception>
            <exception cref="T:DnsClient.DnsResponseException">In case <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true and a DNS error occurs.</exception>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.GetHostName(DnsClient.IDnsQuery,System.Net.IPAddress)">
            <summary>
            The <c>GetHostName</c> method queries a DNS server to resolve the hostname of the <paramref name="address"/> via reverse lookup.
            </summary>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="address">The <see cref="T:System.Net.IPAddress"/> to resolve.</param>
            <returns>
            The hostname if the reverse lookup was successful or <c>null</c>, in case the host was not found.
            If <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to <c>true</c>, this method will throw an <see cref="T:DnsClient.DnsResponseException"/> instead of returning <c>null</c>!
            </returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="address"/>is null.</exception>
            <exception cref="T:DnsClient.DnsResponseException">If no host has been found and <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is <c>true</c>.</exception>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.GetHostNameAsync(DnsClient.IDnsQuery,System.Net.IPAddress)">
            <summary>
            The <c>GetHostNameAsync</c> method queries a DNS server to resolve the hostname of the <paramref name="address"/> via reverse lookup.
            </summary>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="address">The <see cref="T:System.Net.IPAddress"/> to resolve.</param>
            <returns>
            The hostname if the reverse lookup was successful or <c>null</c>, in case the host was not found.
            If <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to <c>true</c>, this method will throw an <see cref="T:DnsClient.DnsResponseException"/> instead of returning <c>null</c>!
            </returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="address"/>is null.</exception>
            <exception cref="T:DnsClient.DnsResponseException">If no host has been found and <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is <c>true</c>.</exception>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.ResolveService(DnsClient.IDnsQuery,System.String,System.String,System.Net.Sockets.ProtocolType)">
            <summary>
            The <c>ResolveService</c> method does a <see cref="F:DnsClient.QueryType.SRV"/> lookup for <c>_{<paramref name="serviceName"/>}[._{<paramref name="protocol"/>}].{<paramref name="baseDomain"/>}</c>
            and aggregates the result (hostname, port and list of <see cref="T:System.Net.IPAddress"/>s) to a <see cref="T:DnsClient.ServiceHostEntry"/>.
            <para>
            This method expects matching A or AAAA records to populate the <see cref="P:System.Net.IPHostEntry.AddressList"/>,
            and/or a <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> record to populate the <see cref="P:System.Net.IPHostEntry.HostName"/> property of the result.
            </para>
            </summary>
            <remarks>
            The returned list of <see cref="T:System.Net.IPAddress"/>s and/or the hostname can be empty if no matching additional records are found.
            </remarks>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="baseDomain">The base domain, which will be appended to the end of the query string.</param>
            <param name="serviceName">The name of the service to look for. Must not have any <c>_</c> prefix.</param>
            <param name="protocol">
            The protocol of the service to query for.
            Set it to <see cref="F:System.Net.Sockets.ProtocolType.Unknown"/> or <see cref="F:System.Net.Sockets.ProtocolType.Unspecified"/> to not pass any protocol.
            </param>
            <returns>A collection of <see cref="T:DnsClient.ServiceHostEntry"/>s.</returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="baseDomain"/> or <paramref name="serviceName"/> are null.</exception>
            <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.ResolveServiceAsync(DnsClient.IDnsQuery,System.String,System.String,System.Net.Sockets.ProtocolType)">
            <summary>
            The <c>ResolveServiceAsync</c> method does  a <see cref="F:DnsClient.QueryType.SRV"/> lookup for <c>_{<paramref name="serviceName"/>}[._{<paramref name="protocol"/>}].{<paramref name="baseDomain"/>}</c>
            and aggregates the result (hostname, port and list of <see cref="T:System.Net.IPAddress"/>s) to a <see cref="T:DnsClient.ServiceHostEntry"/>.
            <para>
            This method expects matching A or AAAA records to populate the <see cref="P:System.Net.IPHostEntry.AddressList"/>,
            and/or a <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> record to populate the <see cref="P:System.Net.IPHostEntry.HostName"/> property of the result.
            </para>
            </summary>
            <remarks>
            The returned list of <see cref="T:System.Net.IPAddress"/>s and/or the hostname can be empty if no matching additional records are found.
            </remarks>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="baseDomain">The base domain, which will be appended to the end of the query string.</param>
            <param name="serviceName">The name of the service to look for. Must not have any <c>_</c> prefix.</param>
            <param name="protocol">
            The protocol of the service to query for.
            Set it to <see cref="F:System.Net.Sockets.ProtocolType.Unknown"/> or <see cref="F:System.Net.Sockets.ProtocolType.Unspecified"/> to not pass any protocol.
            </param>
            <returns>A collection of <see cref="T:DnsClient.ServiceHostEntry"/>s.</returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="baseDomain"/> or <paramref name="serviceName"/> are null.</exception>
            <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.ResolveService(DnsClient.IDnsQuery,System.String,System.String,System.String)">
            <summary>
            The <c>ResolveService</c> method does a <see cref="F:DnsClient.QueryType.SRV"/> lookup for <c>_{<paramref name="serviceName"/>}[._{<paramref name="tag"/>}].{<paramref name="baseDomain"/>}</c>
            and aggregates the result (hostname, port and list of <see cref="T:System.Net.IPAddress"/>s) to a <see cref="T:DnsClient.ServiceHostEntry"/>.
            <para>
            This method expects matching A or AAAA records to populate the <see cref="P:System.Net.IPHostEntry.AddressList"/>,
            and/or a <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> record to populate the <see cref="P:System.Net.IPHostEntry.HostName"/> property of the result.
            </para>
            </summary>
            <remarks>
            The returned list of <see cref="T:System.Net.IPAddress"/>s and/or the hostname can be empty if no matching additional records are found.
            </remarks>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="baseDomain">The base domain, which will be appended to the end of the query string.</param>
            <param name="serviceName">The name of the service to look for. Must not have any <c>_</c> prefix.</param>
            <param name="tag">An optional tag. Must not have any <c>_</c> prefix.</param>
            <returns>A collection of <see cref="T:DnsClient.ServiceHostEntry"/>s.</returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="baseDomain"/> or <paramref name="serviceName"/> are null.</exception>
            <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
        </member>
        <member name="M:DnsClient.DnsQueryExtensions.ResolveServiceAsync(DnsClient.IDnsQuery,System.String,System.String,System.String)">
            <summary>
            The <c>ResolveServiceAsync</c> method does a <see cref="F:DnsClient.QueryType.SRV"/> lookup for <c>_{<paramref name="serviceName"/>}[._{<paramref name="tag"/>}].{<paramref name="baseDomain"/>}</c>
            and aggregates the result (hostname, port and list of <see cref="T:System.Net.IPAddress"/>s) to a <see cref="T:DnsClient.ServiceHostEntry"/>.
            <para>
            This method expects matching A or AAAA records to populate the <see cref="P:System.Net.IPHostEntry.AddressList"/>,
            and/or a <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> record to populate the <see cref="P:System.Net.IPHostEntry.HostName"/> property of the result.
            </para>
            </summary>
            <remarks>
            The returned list of <see cref="T:System.Net.IPAddress"/>s and/or the hostname can be empty if no matching additional records are found.
            </remarks>
            <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
            <param name="baseDomain">The base domain, which will be appended to the end of the query string.</param>
            <param name="serviceName">The name of the service to look for. Must not have any <c>_</c> prefix.</param>
            <param name="tag">An optional tag. Must not have any <c>_</c> prefix.</param>
            <returns>A collection of <see cref="T:DnsClient.ServiceHostEntry"/>s.</returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="baseDomain"/> or <paramref name="serviceName"/> are null.</exception>
            <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
        </member>
        <member name="T:DnsClient.ServiceHostEntry">
            <summary>
            Extends <see cref="T:System.Net.IPHostEntry"/> by the <see cref="P:DnsClient.ServiceHostEntry.Port"/> property.
            </summary>
            <seealso cref="T:System.Net.IPHostEntry" />
        </member>
        <member name="P:DnsClient.ServiceHostEntry.Port">
            <summary>
            Gets or sets the port.
            </summary>
            <value>
            The port.
            </value>
        </member>
        <member name="T:DnsClient.DnsQueryResponse">
            <summary>
            The response returned by any query performed by <see cref="T:DnsClient.IDnsQuery"/> with all answer sections, header and message information.
            </summary>
            <seealso cref="T:DnsClient.IDnsQuery"/>
            <seealso cref="T:DnsClient.ILookupClient"/>
        </member>
        <member name="P:DnsClient.DnsQueryResponse.NameServer">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.Additionals">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.AllRecords">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.AuditTrail">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.Answers">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.Authorities">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.ErrorMessage">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.HasError">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.Header">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.Questions">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.DnsQueryResponse.MessageSize">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.DnsQueryResponse.Equals(System.Object)">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.DnsQueryResponse.GetHashCode">
            <inheritdoc />
        </member>
        <member name="T:DnsClient.DnsQuestion">
            <summary>
            The <see cref="T:DnsClient.DnsQuestion"/> class transports information of the lookup query performed by <see cref="T:DnsClient.IDnsQuery"/>.
            <para>
            A list of questions is returned by <see cref="T:DnsClient.IDnsQueryResponse"/> (although, the list will always contain only one <see cref="T:DnsClient.DnsQuestion"/>).
            </para>
            </summary>
        </member>
        <member name="P:DnsClient.DnsQuestion.QueryName">
            <summary>
            Gets the domain name the lookup was runnig for.
            </summary>
            <value>
            The name of the query.
            </value>
        </member>
        <member name="P:DnsClient.DnsQuestion.QuestionClass">
            <summary>
            Gets the question class.
            </summary>
            <value>
            The question class.
            </value>
        </member>
        <member name="P:DnsClient.DnsQuestion.QuestionType">
            <summary>
            Gets the type of the question.
            </summary>
            <value>
            The type of the question.
            </value>
        </member>
        <member name="M:DnsClient.DnsQuestion.#ctor(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsQuestion"/> class.
            </summary>
            <param name="query">The query.</param>
            <param name="questionType">Type of the question.</param>
            <param name="questionClass">The question class.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="query"/> is null.</exception>
        </member>
        <member name="M:DnsClient.DnsQuestion.#ctor(DnsClient.DnsString,DnsClient.QueryType,DnsClient.QueryClass)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsQuestion"/> class.
            </summary>
            <param name="query">The query.</param>
            <param name="questionType">Type of the question.</param>
            <param name="questionClass">The question class.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="query"/> is null.</exception>
        </member>
        <member name="M:DnsClient.DnsQuestion.ToString">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.DnsQuestion.ToString(System.Int32)">
            <summary>
            Returns the information of this instance in a friendly format with an optional <paramref name="offset"/>.
            </summary>
            <param name="offset">The optional offset which can be used for pretty printing.</param>
            <returns>The string representation of this instance.</returns>
        </member>
        <member name="T:DnsClient.DnsRequestMessage">
            <summary>
            Represents a simple request message which can be send through <see cref="T:DnsClient.DnsMessageHandler"/>.
            </summary>
        </member>
        <member name="T:DnsClient.DnsResponseCode">
            <summary>
            Response codes of the <see cref="T:DnsClient.IDnsQueryResponse"/>.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc6895#section-2.3">RFC 6895</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.NoError">
            <summary>
            No error condition
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.FormatError">
            <summary>
            Format error. The name server was unable to interpret the query.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.ServerFailure">
            <summary>
            Server failure. The name server was unable to process this query due to a problem with the name server.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.NotExistentDomain">
            <summary>
            Name Error. Meaningful only for responses from an authoritative name server,
            this code signifies that the domain name referenced in the query does not exist.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.NotImplemented">
            <summary>
            Not Implemented. The name server does not support the requested kind of query.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.Refused">
            <summary>
            Refused. The name server refuses to perform the specified operation for policy reasons.
            For example, a name server may not wish to provide the information to the particular requester,
            or a name server may not wish to perform a particular operation (e.g., zone transfer) for particular data.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.ExistingDomain">
            <summary>
            Name Exists when it should not.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.ExistingResourceRecordSet">
            <summary>
            Resource record set exists when it should not.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.MissingResourceRecordSet">
            <summary>
            Resource record set that should exist but does not.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.NotAuthorized">
            <summary>
            Server Not Authoritative for zone / Not Authorized.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
            <seealso href="https://tools.ietf.org/html/rfc2845">RFC 2845</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.NotZone">
            <summary>
            Name not contained in zone.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.BadVersionOrBadSignature">
            <summary>
            Bad OPT Version or TSIG Signature Failure.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2671">RFC 2671</seealso>
            <seealso href="https://tools.ietf.org/html/rfc2845">RFC 2845</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.BadKey">
            <summary>
            Key not recognized.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2845">RFC 2845</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.BadTime">
            <summary>
            Signature out of time window.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2845">RFC 2845</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.BadMode">
            <summary>
            Bad TKEY Mode.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2930">RFC 2930</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.BadName">
            <summary>
            Duplicate key name.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2930">RFC 2930</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.BadAlgorithm">
            <summary>
            Algorithm not supported.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2930">RFC 2930</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.BadTruncation">
            <summary>
            Bad Truncation.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc4635">RFC 4635</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.BadCookie">
            <summary>
            Bad/missing Server Cookie
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc7873">RFC 7873</seealso>
        </member>
        <member name="F:DnsClient.DnsResponseCode.Unassigned">
            <summary>
            Unknown error.
            </summary>
        </member>
        <member name="F:DnsClient.DnsResponseCode.ConnectionTimeout">
            <summary>
            Indicates a timeout error. Connection to the remote server couldn't be established.
            </summary>
        </member>
        <member name="T:DnsClient.DnsResponseException">
            <summary>
            A DnsClient specific exception transporting additional information about the query causing this exception.
            </summary>
            <seealso cref="T:System.Exception" />
        </member>
        <member name="P:DnsClient.DnsResponseException.Code">
            <summary>
            Gets the response code.
            </summary>
            <value>
            The response code.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseException.AuditTrail">
            <summary>
            Gets the audit trail if <see cref="P:DnsClient.ILookupClient.EnableAuditTrail"/>. as set to <c>true</c>, <c>null</c> otherwise.
            </summary>
            <value>
            The audit trail.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseException.DnsError">
            <summary>
            Gets a human readable error message.
            </summary>
            <value>
            The error message.
            </value>
        </member>
        <member name="M:DnsClient.DnsResponseException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class 
            with <see cref="P:DnsClient.DnsResponseException.Code"/> set to <see cref="F:DnsClient.DnsResponseCode.Unassigned"/>.
            </summary>
        </member>
        <member name="M:DnsClient.DnsResponseException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class 
            with <see cref="P:DnsClient.DnsResponseException.Code"/> set to <see cref="F:DnsClient.DnsResponseCode.Unassigned"/>
            and a custom <paramref name="message"/>.
            </summary>
        </member>
        <member name="M:DnsClient.DnsResponseException.#ctor(DnsClient.DnsResponseCode)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class 
            with the standard error text for the given <paramref name="code"/>.
            </summary>
        </member>
        <member name="M:DnsClient.DnsResponseException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class 
            with <see cref="P:DnsClient.DnsResponseException.Code"/> set to <see cref="F:DnsClient.DnsResponseCode.Unassigned"/>
            and a custom <paramref name="message"/> and inner <see cref="T:System.Exception"/>.
            </summary>
        </member>
        <member name="M:DnsClient.DnsResponseException.#ctor(DnsClient.DnsResponseCode,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class 
            with a custom <paramref name="message"/> and the given <paramref name="code"/>.
            </summary>
        </member>
        <member name="M:DnsClient.DnsResponseException.#ctor(DnsClient.DnsResponseCode,System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class 
            with a custom <paramref name="message"/> and the given <paramref name="code"/>.
            </summary>
        </member>
        <member name="T:DnsClient.DnsResponseHeader">
            <summary>
            The header section of a <see cref="T:DnsClient.IDnsQueryResponse"/>.
            </summary>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.AdditionalCount">
            <summary>
            Gets the number of additional records in the <see cref="T:DnsClient.IDnsQueryResponse"/>.
            </summary>
            <value>
            The number of additional records.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.AnswerCount">
            <summary>
            Gets the number of answer records in the <see cref="T:DnsClient.IDnsQueryResponse"/>.
            </summary>
            <value>
            The number of answer records.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.FutureUse">
            <summary>
            Gets a value indicating whether the future use flag is set.
            </summary>
            <value>
              The future use flag.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.HasAuthorityAnswer">
            <summary>
            Gets a value indicating whether this instance has authority answers.
            </summary>
            <value>
              <c>true</c> if this instance has authority answers; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.Id">
            <summary>
            Gets the identifier.
            </summary>
            <value>
            The identifier.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.IsAuthenticData">
            <summary>
            Gets a value indicating whether the result is authentic data.
            </summary>
            <value>
              <c>true</c> if the result is authentic; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.IsCheckingDisabled">
            <summary>
            Gets a value indicating whether checking is disabled.
            </summary>
            <value>
              <c>true</c> if checking is disabled; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.HasQuery">
            <summary>
            Gets a value indicating whether this instance has a query.
            </summary>
            <value>
              <c>true</c> if this instance has a query; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.NameServerCount">
            <summary>
            Gets the number of name servers.
            </summary>
            <value>
            The number of name servers.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.OPCode">
            <summary>
            Gets the kind of query defined by <see cref="T:DnsClient.DnsOpCode"/>.
            </summary>
            <value>
            The query kind.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.QuestionCount">
            <summary>
            Gets the number of questions of the <see cref="T:DnsClient.IDnsQueryResponse"/>.
            </summary>
            <value>
            The number of questions.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.RecursionAvailable">
            <summary>
            Gets a value indicating whether recursion is available on the DNS server.
            </summary>
            <value>
              <c>true</c> if recursion is available; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.ResponseCode">
            <summary>
            Gets the response code.
            </summary>
            <value>
            The response code.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.ResultTruncated">
            <summary>
            Gets a value indicating whether the result was truncated.
            </summary>
            <value>
              <c>true</c> if the result was truncated; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:DnsClient.DnsResponseHeader.RecursionDesired">
            <summary>
            Gets a value indicating whether recursion desired flag was set by the request.
            </summary>
            <value>
              <c>true</c> if the recursion desired flag was set; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="M:DnsClient.DnsResponseHeader.#ctor(System.Int32,System.UInt16,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.DnsResponseHeader"/> class.
            </summary>
            <param name="id">The identifier.</param>
            <param name="flags">The flags.</param>
            <param name="questionCount">The question count.</param>
            <param name="answerCount">The answer count.</param>
            <param name="additionalCount">The additional count.</param>
            <param name="serverCount">The server count.</param>
        </member>
        <member name="M:DnsClient.DnsResponseHeader.ToString">
            <summary>
            Returns a <see cref="T:System.String" /> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String" /> that represents this instance.
            </returns>
        </member>
        <member name="M:DnsClient.DnsResponseMessage.AsQueryResponse(DnsClient.NameServer)">
            <summary>
            Gets the readonly representation of this message which can be returned.
            </summary>
        </member>
        <member name="T:DnsClient.DnsString">
            <summary>
            The <see cref="T:DnsClient.DnsString"/> type is used to normalize and validate domain names and labels.
            </summary>
        </member>
        <member name="F:DnsClient.DnsString.ACEPrefix">
            <summary>
            The ACE prefix indicates that the domain name label contains not normally supported characters and that the label has been endoded.
            </summary>
        </member>
        <member name="F:DnsClient.DnsString.LabelMaxLength">
            <summary>
            The maximum lenght in bytes for one label.
            </summary>
        </member>
        <member name="F:DnsClient.DnsString.QueryMaxLength">
            <summary>
            The maximum supported total length in bytes for a domain nanme. The calculation of the actual 
            bytes this <see cref="T:DnsClient.DnsString"/> consumes includes all bytes used for to encode it as octet string.
            </summary>
        </member>
        <member name="F:DnsClient.DnsString.RootLabel">
            <summary>
            The root label ".".
            </summary>
        </member>
        <member name="P:DnsClient.DnsString.Original">
            <summary>
            Gets the orginal value.
            </summary>
        </member>
        <member name="P:DnsClient.DnsString.Value">
            <summary>
            Gets the validated and eventually modified value.
            </summary>
        </member>
        <member name="M:DnsClient.DnsString.op_Implicit(DnsClient.DnsString)~System.String">
            <summary>
            Performs an implicit conversion from <see cref="T:DnsClient.DnsString"/> to <see cref="T:System.String"/>.
            </summary>
            <param name="name">The name.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:DnsClient.DnsString.ToString">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.DnsString.GetHashCode">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.DnsString.Equals(System.Object)">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.DnsString.Parse(System.String)">
            <summary>
            Parses the given <paramref name="query"/> and validates all labels.
            </summary>
            <remarks>
            An empty string will be interpreted as root label.
            </remarks>
            <param name="query">A domain name.</param>
            <returns>The <see cref="T:DnsClient.DnsString"/> representing the given <paramref name="query"/>.</returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="query"/> is null.</exception>
        </member>
        <member name="M:DnsClient.DnsString.FromResponseQueryString(System.String)">
            <summary>
            Transforms names with the <see cref="F:DnsClient.DnsString.ACEPrefix"/> to the unicode variant and adds a trailing '.' at the end if not present.
            The original value will be kept in this instance in case it is needed.        
            </summary>
            <remarks>
            The method does not parse the domain name unless it contains a <see cref="F:DnsClient.DnsString.ACEPrefix"/>.
            </remarks>
            <param name="query">The value to check.</param>
            <returns>The <see cref="T:DnsClient.DnsString"/> representation.</returns>
        </member>
        <member name="T:DnsClient.IDnsQuery">
            <summary>
            Generic contract to query DNS endpoints. Implemented by <see cref="T:DnsClient.LookupClient"/>.
            </summary>
        </member>
        <member name="M:DnsClient.IDnsQuery.Query(System.String,DnsClient.QueryType)">
            <summary>
            Performs a DNS lookup for <paramref name="query" /> and <paramref name="queryType" />.
            </summary>
            <param name="query">The domain name query.</param>
            <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
            </returns>
        </member>
        <member name="M:DnsClient.IDnsQuery.Query(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
            <summary>
            Performs a DNS lookup for <paramref name="query" />, <paramref name="queryType" /> and <paramref name="queryClass"/>.
            </summary>
            <param name="query">The domain name query.</param>
            <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
            <param name="queryClass">The <see cref="T:DnsClient.QueryClass"/>.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
            </returns>
        </member>
        <member name="M:DnsClient.IDnsQuery.QueryAsync(System.String,DnsClient.QueryType)">
            <summary>
            Performs a DNS lookup for <paramref name="query" /> and <paramref name="queryType" />.
            </summary>
            <param name="query">The domain name query.</param>
            <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
            </returns>
        </member>
        <member name="M:DnsClient.IDnsQuery.QueryAsync(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
            <summary>
            Performs a DNS lookup for <paramref name="query" />, <paramref name="queryType" /> and <paramref name="queryClass"/>.
            </summary>
            <param name="query">The domain name query.</param>
            <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
            <param name="queryClass">The <see cref="T:DnsClient.QueryClass"/>.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
            </returns>
        </member>
        <member name="M:DnsClient.IDnsQuery.QueryAsync(System.String,DnsClient.QueryType,System.Threading.CancellationToken)">
            <summary>
            Performs a DNS lookup for <paramref name="query" /> and <paramref name="queryType" />.
            </summary>
            <param name="query">The domain name query.</param>
            <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
            <param name="cancellationToken">The cancellation token.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
            </returns>
        </member>
        <member name="M:DnsClient.IDnsQuery.QueryAsync(System.String,DnsClient.QueryType,DnsClient.QueryClass,System.Threading.CancellationToken)">
            <summary>
            Performs a DNS lookup for <paramref name="query" />, <paramref name="queryType" /> and <paramref name="queryClass" />.
            </summary>
            <param name="query">The domain name query.</param>
            <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
            <param name="queryClass">The <see cref="T:DnsClient.QueryClass" />.</param>
            <param name="cancellationToken">The cancellation token.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
            </returns>
        </member>
        <member name="M:DnsClient.IDnsQuery.QueryReverse(System.Net.IPAddress)">
            <summary>
            Does a reverse lookup of the <paramref name="ipAddress"/>.
            </summary>
            <param name="ipAddress">The <see cref="T:System.Net.IPAddress"/>.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which should contain the <see cref="T:DnsClient.Protocol.PtrRecord"/>.
            </returns>
        </member>
        <member name="M:DnsClient.IDnsQuery.QueryReverseAsync(System.Net.IPAddress)">
            <summary>
            Does a reverse lookup of the <paramref name="ipAddress"/>.
            </summary>
            <param name="ipAddress">The <see cref="T:System.Net.IPAddress"/>.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which should contain the <see cref="T:DnsClient.Protocol.PtrRecord"/>.
            </returns>
        </member>
        <member name="M:DnsClient.IDnsQuery.QueryReverseAsync(System.Net.IPAddress,System.Threading.CancellationToken)">
            <summary>
            Does a reverse lookup of the <paramref name="ipAddress" />.
            </summary>
            <param name="ipAddress">The <see cref="T:System.Net.IPAddress" />.</param>
            <param name="cancellationToken">The cancellation token.</param>
            <returns>
            The <see cref="T:DnsClient.IDnsQueryResponse" /> which should contain the <see cref="T:DnsClient.Protocol.PtrRecord" />.
            </returns>
        </member>
        <member name="T:DnsClient.IDnsQueryResponse">
            <summary>
            Contract defining the result of a query performed by <see cref="T:DnsClient.IDnsQuery"/>.
            </summary>
            <seealso cref="T:DnsClient.IDnsQuery"/>
            <seealso cref="T:DnsClient.ILookupClient"/>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.Questions">
            <summary>
            Gets the list of questions.
            </summary>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.Additionals">
            <summary>
            Gets a list of additional records.
            </summary>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.AllRecords">
            <summary>
            Gets a list of all answers, addtional and authority records.
            </summary>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.Answers">
            <summary>
            Gets a list of answer records.
            </summary>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.Authorities">
            <summary>
            Gets a list of authority records.
            </summary>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.AuditTrail">
            <summary>
            Gets the audit trail if <see cref="P:DnsClient.ILookupClient.EnableAuditTrail"/>. as set to <c>true</c>, <c>null</c> otherwise.
            </summary>
            <value>
            The audit trail.
            </value>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.ErrorMessage">
            <summary>
            Returns a string value representing the error response code in case an error occured, 
            otherwise '<see cref="F:DnsClient.DnsResponseCode.NoError"/>'.
            </summary>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.HasError">
            <summary>
            A flag indicating if the header contains a response codde other than <see cref="F:DnsClient.DnsResponseCode.NoError"/>.
            </summary>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.Header">
            <summary>
            Gets the header of the response.
            </summary>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.MessageSize">
            <summary>
            Gets the size of the message.
            </summary>
            <value>
            The size of the message.
            </value>
        </member>
        <member name="P:DnsClient.IDnsQueryResponse.NameServer">
            <summary>
            Gets the name server which responded with this result.
            </summary>
            <value>
            The name server.
            </value>
        </member>
        <member name="T:DnsClient.ILookupClient">
            <summary>
            The contract for the LookupClient including all the options.
            <para>
            The interfaces for the query methods and the lookup client properties are separated so that one can
            inject or expose only the <see cref="T:DnsClient.IDnsQuery"/> without exposing the configuration options.
            </para>
            </summary>
        </member>
        <member name="P:DnsClient.ILookupClient.EnableAuditTrail">
            <summary>
            If enabled, each <see cref="T:DnsClient.IDnsQueryResponse"/> will contain a full documentation of the response in zone file format.
            </summary>
            <seealso cref="P:DnsClient.IDnsQueryResponse.AuditTrail"/>
        </member>
        <member name="P:DnsClient.ILookupClient.UseCache">
            <summary>
            Gets or sets a flag indicating if the <see cref="T:DnsClient.LookupClient"/> should use response caching or not.
            The cache duration is calculated by the resource record of the response. Usually, the lowest TTL is used.
            </summary>
            <remarks>
            In case the DNS Server returns records with a TTL of zero. The response cannot be cached.
            Setting <see cref="P:DnsClient.ILookupClient.MinimumCacheTimeout"/> can overwrite this behavior and cache those responses anyways for at least the given duration.
            </remarks>
        </member>
        <member name="P:DnsClient.ILookupClient.MinimumCacheTimeout">
            <summary>
            Gets or sets a <see cref="T:System.TimeSpan"/> which can override the TTL of a resource record in case the
            TTL of the record is lower than this minimum value.
            <para>
            This is useful in cases where the server retruns records with zero TTL.
            </para>
            This setting gets igonred in case <see cref="P:DnsClient.ILookupClient.UseCache"/> is set to <c>false</c>.
            </summary>
        </member>
        <member name="P:DnsClient.ILookupClient.NameServers">
            <summary>
            Gets the list of configured name servers.
            </summary>
        </member>
        <member name="P:DnsClient.ILookupClient.Recursion">
            <summary>
            Gets or sets a flag indicating if DNS queries should instruct the DNS server to do recursive lookups, or not.
            </summary>
            <value>The flag indicating if recursion should be used or not.</value>
        </member>
        <member name="P:DnsClient.ILookupClient.Retries">
            <summary>
            Gets or sets number of tries to connect to one name server before trying the next one or throwing an exception.
            </summary>
            <summary>
            Gets or sets the number of retries the client can perform in connection or timeout errors during query operations.
            <para>
            If set to <c>0</c>, no retries will be performed.
            </para>
            </summary>
            <value>The number of alloed retries before exceptions will bubble up.</value>
        </member>
        <member name="P:DnsClient.ILookupClient.ThrowDnsErrors">
            <summary>
            Gets or sets a flag indicating if the <see cref="T:DnsClient.LookupClient"/> should throw an <see cref="T:DnsClient.DnsResponseException"/> if
            a query result has a <see cref="T:DnsClient.DnsResponseCode"/> other than <see cref="F:DnsClient.DnsResponseCode.NoError"/>.
            <para>
            If set to <c>false</c>, the <see cref="T:DnsClient.IDnsQueryResponse"/>'s <see cref="P:DnsClient.IDnsQueryResponse.HasError"/> flag can be expected.
            The <see cref="P:DnsClient.IDnsQueryResponse.ErrorMessage"/> will contain more information and the <see cref="P:DnsClient.IDnsQueryResponse.Header"/> transports the
            original <see cref="T:DnsClient.DnsResponseCode"/>.
            </para>
            <para>
            If set to <c>true</c>, any query method of <see cref="T:DnsClient.IDnsQuery"/> will throw an <see cref="T:DnsClient.DnsResponseException"/> if
            the response header indicates an error. The actual code and message can be accessed via <see cref="P:DnsClient.DnsResponseException.Code"/> and <see cref="P:DnsClient.DnsResponseException.DnsError"/> of the <see cref="T:DnsClient.DnsResponseException"/>.
            </para>
            </summary>
            <seealso cref="T:DnsClient.DnsResponseCode"/>
        </member>
        <member name="P:DnsClient.ILookupClient.Timeout">
            <summary>
            Gets or sets the timeout in milliseconds. <see cref="P:DnsClient.ILookupClient.Timeout"/> is used for limiting the connection and request time for one operation.
            Timeout must be greater than zero and less than <see cref="F:System.Int32.MaxValue"/>.
            If set to <see cref="F:System.Threading.Timeout.InfiniteTimeSpan"/> (or -1), no timeout will be applied.
            </summary>
            <remarks>
            If set too short, queries will more likely result in <see cref="T:System.TimeoutException"/>s.
            <para>
            Important to note, <see cref="T:System.TimeoutException"/>s will be retried, if <see cref="P:DnsClient.ILookupClient.Retries"/> are not disabled.
            This should help in case one or more configured DNS servers are not reachable or under load for example.
            </para>
            </remarks>
        </member>
        <member name="P:DnsClient.ILookupClient.UseTcpFallback">
            <summary>
            Gets or sets a flag indicating if Tcp should not be used in case a Udp response is truncated.
            If <c>true</c>, truncated results will potentially yield no answers.
            </summary>
        </member>
        <member name="P:DnsClient.ILookupClient.UseTcpOnly">
            <summary>
            Gets or sets a flag indicating if Udp should not be used at all.
            <para>
            Use this only if Udp cannot be used because of your firewall rules for example.
            </para>
            </summary>
        </member>
        <member name="T:DnsClient.LookupClient">
             <summary>
             The <see cref="T:DnsClient.LookupClient"/> is the main query class of this library and should be used for any kind of DNS lookup query.
             <para>
             It implements <see cref="T:DnsClient.ILookupClient"/> and <see cref="T:DnsClient.IDnsQuery"/> which contains a number of extension methods, too.
             The extension methods internally all invoke the standard <see cref="T:DnsClient.IDnsQuery"/> queries though.
             </para>
             </summary>
             <seealso cref="T:DnsClient.IDnsQuery"/>
             <seealso cref="T:DnsClient.ILookupClient"/>
             <example>
             A basic example wihtout specifying any DNS server, which will use the DNS server configured by your local network.
             <code>
             <![CDATA[
             var client = new LookupClient();
             var result = client.Query("google.com", QueryType.A);
            
             foreach (var aRecord in result.Answers.ARecords())
             {
                 Console.WriteLine(aRecord);
             }
             ]]>
             </code>
             </example>
        </member>
        <member name="P:DnsClient.LookupClient.UseTcpFallback">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.UseTcpOnly">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.NameServers">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.EnableAuditTrail">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.Recursion">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.Retries">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.ThrowDnsErrors">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.Timeout">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.UseCache">
            <inheritdoc />
        </member>
        <member name="P:DnsClient.LookupClient.MinimumCacheTimeout">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.LookupClient.#ctor">
             <summary>
             Creates a new instance of <see cref="T:DnsClient.LookupClient"/> without specifying any name server.
             This will implicitly use the name server(s) configured by the local network adapter.
             </summary>
             <remarks>
             This uses <see cref="M:DnsClient.NameServer.ResolveNameServers(System.Boolean,System.Boolean)"/>.
             The resulting list of name servers is highly dependent on the local network configuration and OS.
             </remarks>
             <example>
             In the following example, we will create a new <see cref="T:DnsClient.LookupClient"/> without explicitly defining any DNS server.
             This will use the DNS server configured by your local network.
             <code>
             <![CDATA[
             var client = new LookupClient();
             var result = client.Query("google.com", QueryType.A);
            
             foreach (var aRecord in result.Answers.ARecords())
             {
                 Console.WriteLine(aRecord);
             }
             ]]>
             </code>
             </example>
        </member>
        <member name="M:DnsClient.LookupClient.#ctor(System.Net.IPAddress[])">
            <summary>
            Creates a new instance of <see cref="T:DnsClient.LookupClient"/> with one or more DNS servers identified by their <see cref="T:System.Net.IPAddress"/>.
            The default port <c>53</c> will be used for all <see cref="T:System.Net.IPAddress"/>s provided.
            </summary>
            <param name="nameServers">The <see cref="T:System.Net.IPAddress"/>(s) to be used by this <see cref="T:DnsClient.LookupClient"/> instance.</param>
            <example>
            To connect to one or more DNS server using the default port, we can use this overload:
            <code>
            <![CDATA[
            // configuring the client to use google's public IPv4 DNS servers.
            var client = new LookupClient(IPAddress.Parse("8.8.8.8"), IPAddress.Parse("8.8.4.4"));
            ]]>
            </code>
            </example>
        </member>
        <member name="M:DnsClient.LookupClient.#ctor(System.Net.IPAddress,System.Int32)">
            <summary>
            Create a new instance of <see cref="T:DnsClient.LookupClient"/> with one DNS server defined by <paramref name="address"/> and <paramref name="port"/>.
            </summary>
            <param name="address">The <see cref="T:System.Net.IPAddress"/> of the DNS server.</param>
            <param name="port">The port of the DNS server.</param>
            <example>
            In case you want to connect to one specific DNS server which does not run on the default port <c>53</c>, you can do so like in the following example:
            <code>
            <![CDATA[
            var client = new LookupClient(IPAddress.Parse("127.0.0.1"), 8600);
            ]]>
            </code>
            </example>
        </member>
        <member name="M:DnsClient.LookupClient.#ctor(System.Net.IPEndPoint[])">
            <summary>
            Creates a new instance of <see cref="T:DnsClient.LookupClient"/> with one or more <see cref="T:System.Net.IPAddress"/> and port combination
            stored in <see cref="T:System.Net.IPEndPoint"/>(s).
            </summary>
            <param name="nameServers">The <see cref="T:System.Net.IPEndPoint"/>(s) to be used by this <see cref="T:DnsClient.LookupClient"/> instance.</param>
            <example>
            In this example, we instantiate a new <see cref="T:System.Net.IPEndPoint"/> using an <see cref="T:System.Net.IPAddress"/> and custom port which is different than the default port <c>53</c>.
            <code>
            <![CDATA[
            // Using localhost and port 8600 to connect to a Consul agent.
            var endpoint = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 8600);
            var client = new LookupClient(endpoint);
            ]]>
            </code>
            <para>
            The <see cref="T:DnsClient.NameServer"/> class also contains pre defined <see cref="T:System.Net.IPEndPoint"/>s for the public google DNS servers, which can be used as follows:
            <code>
            <![CDATA[
            var client = new LookupClient(NameServer.GooglePublicDns, NameServer.GooglePublicDnsIPv6);
            ]]>
            </code>
            </para>
            </example>
        </member>
        <member name="M:DnsClient.LookupClient.QueryReverse(System.Net.IPAddress)">
            <inheritdoc />
        </member>
        <member name="M:DnsClient.LookupClient.QueryReverseAsync(System.Net.IPAddress)">
            <inheritdoc />
            <remarks>
            The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
            <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
            </remarks>
        </member>
        <member name="M:DnsClient.LookupClient.QueryReverseAsync(System.Net.IPAddress,System.Threading.CancellationToken)">
            <inheritdoc />
            <remarks>
            The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
            <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
            </remarks>
        </member>
        <member name="M:DnsClient.LookupClient.Query(System.String,DnsClient.QueryType)">
            <inheritdoc />
            <remarks>
            The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
            <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
            </remarks>
        </member>
        <member name="M:DnsClient.LookupClient.Query(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
            <inheritdoc />
            <remarks>
            The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
            <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
            </remarks>
        </member>
        <member name="M:DnsClient.LookupClient.QueryAsync(System.String,DnsClient.QueryType)">
            <inheritdoc />
            <remarks>
            The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
            <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
            </remarks>
        </member>
        <member name="M:DnsClient.LookupClient.QueryAsync(System.String,DnsClient.QueryType,System.Threading.CancellationToken)">
            <inheritdoc />
            <remarks>
            The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
            <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
            </remarks>
        </member>
        <member name="M:DnsClient.LookupClient.QueryAsync(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
            <inheritdoc />
            <remarks>
            The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
            <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
            </remarks>
        </member>
        <member name="M:DnsClient.LookupClient.QueryAsync(System.String,DnsClient.QueryType,DnsClient.QueryClass,System.Threading.CancellationToken)">
            <inheritdoc />
            <remarks>
            The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
            <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
            </remarks>
        </member>
        <member name="T:DnsClient.NameServer">
            <summary>
            Represents a name server instance used by <see cref="T:DnsClient.ILookupClient"/>.
            Also, comes with some static methods to resolve name servers from the local network configuration.
            </summary>
        </member>
        <member name="F:DnsClient.NameServer.DefaultPort">
            <summary>
            The default DNS server port.
            </summary>
        </member>
        <member name="F:DnsClient.NameServer.GooglePublicDns">
            <summary>
            The public google DNS IPv4 endpoint.
            </summary>
        </member>
        <member name="F:DnsClient.NameServer.GooglePublicDns2">
            <summary>
            The second public google DNS IPv6 endpoint.
            </summary>
        </member>
        <member name="F:DnsClient.NameServer.GooglePublicDnsIPv6">
            <summary>
            The public google DNS IPv6 endpoint.
            </summary>
        </member>
        <member name="F:DnsClient.NameServer.GooglePublicDns2IPv6">
            <summary>
            The second public google DNS IPv6 endpoint.
            </summary>
        </member>
        <member name="M:DnsClient.NameServer.#ctor(System.Net.IPAddress)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.NameServer"/> class.
            </summary>
            <param name="endpoint">The endpoint.</param>
        </member>
        <member name="M:DnsClient.NameServer.#ctor(System.Net.IPEndPoint)">
            <summary>
            Initializes a new instance of the <see cref="T:DnsClient.NameServer"/> class.
            </summary>
            <param name="endpoint">The endpoint.</param>
            <exception cref="T:System.ArgumentNullException">If <paramref name="endpoint"/> is null.</exception>
        </member>
        <member name="P:DnsClient.NameServer.Enabled">
            <summary>
            Gets a value indicating whether this <see cref="T:DnsClient.NameServer"/> is enabled.
            <para>
            The instance might get disabled if <see cref="T:DnsClient.ILookupClient"/> encounters problems to connect to it.
            </para>
            </summary>
            <value>
              <c>true</c> if enabled; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:DnsClient.NameServer.Endpoint">
            <summary>
            Gets the endpoint of this instance.
            </summary>
            <value>
            The endpoint.
            </value>
        </member>
        <member name="P:DnsClient.NameServer.SupportedUdpPayloadSize">
            <summary>
            Gets the size of the supported UDP payload.
            <para>
            This value might get updated by <see cref="T:DnsClient.ILookupClient"/> by reading the options records returned by a query.
            </para>
            </summary>
            <value>
            The size of the supported UDP payload.
            </value>
        </member>
        <member name="M:DnsClient.NameServer.ToString">
            <summary>
            Returns a <see cref="T:System.String" /> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String" /> that represents this instance.
            </returns>
        </member>
        <member name="M:DnsClient.NameServer.ResolveNameServers(System.Boolean,System.Boolean)">
            <summary>
            Gets a list of name servers by iterating over the available network interfaces.
            <para>
            If <paramref name="fallbackToGooglePublicDns" /> is enabled, this method will return the google public dns endpoints if no
            local DNS server was found.
            </para>
            </summary>
            <param name="skipIPv6SiteLocal">If set to <c>true</c> local IPv6 sites are skiped.</param>
            <param name="fallbackToGooglePublicDns">If set to <c>true</c> the public Google DNS servers are returned if no other servers could be found.</param>
            <returns>
            The list of name servers.
            </returns>
        </member>
        <member name="T:DnsClient.QueryClass">
            <summary>
            CLASS fields appear in resource records.
            </summary>
        </member>
        <member name="F:DnsClient.QueryClass.IN">
            <summary>
            The Internet.
            </summary>
        </member>
        <member name="F:DnsClient.QueryClass.CS">
            <summary>
            The CSNET class (Obsolete - used only for examples in some obsolete RFCs).
            </summary>
        </member>
        <member name="F:DnsClient.QueryClass.CH">
            <summary>
            The CHAOS class.
            </summary>
        </member>
        <member name="F:DnsClient.QueryClass.HS">
            <summary>
            Hesiod [Dyer 87].
            </summary>
        </member>
        <member name="T:DnsClient.QueryType">
            <summary>
            The query type field appear in the question part of a query.
            Query types are a superset of <see cref="T:DnsClient.Protocol.ResourceRecordType"/>.
            </summary>
        </member>
        <member name="F:DnsClient.QueryType.A">
            <summary>
            A host address.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.ARecord"/>
        </member>
        <member name="F:DnsClient.QueryType.NS">
            <summary>
            An authoritative name server.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.NsRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.MD">
            <summary>
            A mail destination (OBSOLETE - use MX).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.QueryType.MF">
            <summary>
            A mail forwarder (OBSOLETE - use MX).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
        </member>
        <member name="F:DnsClient.QueryType.CNAME">
            <summary>
            The canonical name for an alias.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.1">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.CNameRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.SOA">
            <summary>
            Marks the start of a zone of authority.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.13">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.SoaRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.MB">
            <summary>
            A mailbox domain name (EXPERIMENTAL).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.3">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.MbRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.MG">
            <summary>
            A mail group member (EXPERIMENTAL).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.6">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.MgRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.MR">
            <summary>
            A mailbox rename domain name (EXPERIMENTAL).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.MrRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.NULL">
            <summary>
            A Null resource record (EXPERIMENTAL).
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.NullRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.WKS">
            <summary>
            A well known service description.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc3232">RFC 3232</seealso>
            <seealso cref="T:DnsClient.Protocol.WksRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.PTR">
            <summary>
            A domain name pointer.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.12">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.PtrRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.HINFO">
            <summary>
            Host information.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc1010">RFC 1010</seealso>
            <seealso cref="T:DnsClient.Protocol.HInfoRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.MINFO">
            <summary>
            Mailbox or mail list information.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
            <seealso cref="T:DnsClient.Protocol.MInfoRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.MX">
            <summary>
            Mail exchange.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.9">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc974">RFC 974</seealso>
            <seealso cref="T:DnsClient.Protocol.MxRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.TXT">
            <summary>
            Text resources.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3">RFC 1035</seealso>
            <seealso href="https://tools.ietf.org/html/rfc1464">RFC 1464</seealso>
            <seealso cref="T:DnsClient.Protocol.TxtRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.RP">
            <summary>
            Responsible Person.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1183">RFC 1183</seealso>
            <seealso cref="T:DnsClient.Protocol.RpRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.AFSDB">
            <summary>
            AFS Data Base location.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc1183#section-1">RFC 1183</seealso>
            <seealso href="https://tools.ietf.org/html/rfc5864">RFC 5864</seealso>
            <seealso cref="T:DnsClient.Protocol.AfsDbRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.AAAA">
            <summary>
            An IPv6 host address.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc3596#section-2.2">RFC 3596</seealso>
            <seealso cref="T:DnsClient.Protocol.AaaaRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.SRV">
            <summary>
            A resource record which specifies the location of the server(s) for a specific protocol and domain.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
            <seealso cref="T:DnsClient.Protocol.SrvRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.RRSIG">
            <summary>
            RRSIG rfc3755.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc3755">RFC 3755</seealso>
        </member>
        <member name="F:DnsClient.QueryType.ANY">
            <summary>
            Generic any query *.
            </summary>
        </member>
        <member name="F:DnsClient.QueryType.URI">
            <summary>
            A Uniform Resource Identifier (URI) resource record.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc7553">RFC 7553</seealso>
            <seealso cref="T:DnsClient.Protocol.UriRecord"/>
        </member>
        <member name="F:DnsClient.QueryType.CAA">
            <summary>
            A certification authority authorization.
            </summary>
            <seealso href="https://tools.ietf.org/html/rfc6844">RFC 6844</seealso>
            <seealso cref="T:DnsClient.Protocol.CaaRecord"/>
        </member>
        <member name="T:DnsClient.StaticLog">
            <summary>
            Used for debugging at the moment, might be removed in a future release.
            </summary>
        </member>
        <member name="F:DnsClient.StaticLog.ByteArrayAllocations">
            <summary>
            The number of byte array allocations.
            </summary>
        </member>
        <member name="F:DnsClient.StaticLog.ByteArrayReleases">
            <summary>
            The number of byte arrays released.
            </summary>
        </member>
        <member name="F:DnsClient.StaticLog.ResolveQueryCount">
            <summary>
            The number of resolved queries.
            </summary>
        </member>
        <member name="F:DnsClient.StaticLog.ResolveQueryTries">
            <summary>
            The number of resolve query tries.
            </summary>
        </member>
        <member name="F:DnsClient.StaticLog.CreatedClients">
            <summary>
            The number of created clients.
            </summary>
        </member>
        <member name="T:System.IO.RowConfigReader">
            <summary> 
            Helper for reading config files where each row is a key-value data pair.
            The input key-values must not have any whitespace within them.
            Keys are only matched if they begin a line, with no preceding whitespace.
            </summary>
        </member>
        <member name="M:System.IO.RowConfigReader.#ctor(System.String)">
            <summary>
            Constructs a new RowConfigReader which reads from the given string.
            <param name="buffer">The string to parse through.</param>
            </summary>
        </member>
        <member name="M:System.IO.RowConfigReader.#ctor(System.String,System.StringComparison)">
            <summary>
            Constructs a new RowConfigReader which reads from the given string.
            <param name="buffer">The string to parse through.</param>
            <param name="comparisonKind">The comparison kind to use.</param>
            </summary>
        </member>
        <member name="M:System.IO.RowConfigReader.GetNextValue(System.String)">
            <summary>
            Gets the next occurrence of the given key, from the current position of the reader,
            or throws if no occurrence of the key exists in the remainder of the string.
            </summary>
        </member>
        <member name="M:System.IO.RowConfigReader.TryGetNextValue(System.String,System.String@)">
            <summary>
            Tries to get the next occurrence of the given key from the current position of the reader.
            If successful, returns true and stores the result in 'value'. Otherwise, returns false.
            </summary>
        </member>
        <member name="M:System.IO.RowConfigReader.GetNextValueAsInt32(System.String)">
            <summary>
            Gets the next occurrence of the key in the string, and parses it as an Int32.
            Throws if the key is not found in the remainder of the string, or if the key
            cannot be successfully parsed into an Int32.
            </summary>
            <remarks>
            This is mainly provided as a helper because most Linux config/info files
            store integral data.
            </remarks>
        </member>
        <member name="M:System.IO.RowConfigReader.ReadFirstValueFromString(System.String,System.String)">
            <summary>
            Reads the value of the first occurrence of the given key contained in the string given.
            </summary>
            <param name="data">The key-value row configuration string.</param>
            <param name="key">The key to find.</param>
            <returns>The value of the row containing the first occurrence of the key.</returns>
        </member>
        <member name="T:System.Net.IpAddressExtensions">
            <summary>
            Extension methods for <see cref="T:System.Net.IPAddress"/>.
            </summary>
        </member>
        <member name="M:System.Net.IpAddressExtensions.GetArpaName(System.Net.IPAddress)">
            <summary>
            Translates a IPv4 or IPv6 <see cref="T:System.Net.IPAddress"/> into an <see href="https://en.wikipedia.org/wiki/.arpa">arpa address</see>.
            Used for reverse DNS lookup to get the domain name of the given <see cref="T:System.Net.IPAddress"/>.
            </summary>
            <param name="ip">The address to translate.</param>
            <returns>The arpa representation of the address.</returns>
            <seealso cref="M:DnsClient.IDnsQuery.QueryReverse(System.Net.IPAddress)"/>
            <seealso cref="M:DnsClient.IDnsQuery.QueryReverseAsync(System.Net.IPAddress)"/>
            <seealso href="https://en.wikipedia.org/wiki/.arpa"/>
        </member>
        <member name="T:System.Linq.RecordCollectionExtension">
            <summary>
            Extension methods for <see cref="T:System.Collections.Generic.IEnumerable`1"/> where <c>T</c> is <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>.
            </summary>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.ARecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.ARecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.ARecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.NsRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.NsRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.NsRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.CnameRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.CNameRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.CNameRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.SoaRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.SoaRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.SoaRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.MbRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.MbRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.MbRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.MgRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.MgRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.MgRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.MrRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.MrRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.MrRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.NullRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.NullRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.NullRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.WksRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.WksRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.WksRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.PtrRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.PtrRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.PtrRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.HInfoRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.HInfoRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.HInfoRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.MxRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.MxRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.MxRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.TxtRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.TxtRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.TxtRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.RpRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.RpRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.RpRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.AfsDbRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.AfsDbRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.AfsDbRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.AaaaRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.AaaaRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.AaaaRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.SrvRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.SrvRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.SrvRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.UriRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.UriRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.UriRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.CaaRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.CaaRecord"/>s only.
            </summary>
            <param name="records">The records.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.CaaRecord"/>.</returns>
        </member>
        <member name="M:System.Linq.RecordCollectionExtension.OfRecordType(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord},DnsClient.Protocol.ResourceRecordType)">
            <summary>
            Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>s
            which have the <paramref name="type"/>.
            </summary>
            <param name="records">The records.</param>
            <param name="type">The <see cref="T:DnsClient.Protocol.ResourceRecordType"/> to filter for.</param>
            <returns>The list of <see cref="T:DnsClient.Protocol.ARecord"/>.</returns>
        </member>
    </members>
</doc>