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
|
<Type Name="Hashtable" FullName="System.Collections.Hashtable" FullNameSP="System_Collections_Hashtable" Maintainer="ecma">
<TypeSignature Language="ILASM" Value=".class public serializable Hashtable extends System.Object implements System.ICloneable, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable" />
<TypeSignature Language="C#" Value="public class Hashtable : ICloneable, System.Collections.IDictionary, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable" />
<MemberOfLibrary>BCL</MemberOfLibrary>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
<AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ]</AssemblyPublicKey>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ThreadingSafetyStatement>This class is safe for multiple readers and a single writer.</ThreadingSafetyStatement>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.Collections.IDictionary</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.ICloneable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Runtime.Serialization.IDeserializationCallback</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Runtime.Serialization.ISerializable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName>System.Diagnostics.DebuggerDisplay("Count={Count}")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Diagnostics.DebuggerTypeProxy(typeof(System.Collections.CollectionDebuggerView))</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>
<para> Represents a hash table.</para>
</summary>
<remarks>
<para> A <see cref="T:System.Collections.Hashtable" /> represents a
dictionary with a constant lookup time that contains entries of associated keys
and values. The type of each entry in a <see cref="T:System.Collections.Hashtable" /> is <see cref="T:System.Collections.DictionaryEntry" />. A statement that exposes each element in the
collection is required to iterate over this type. <block subset="none" type="note">See
example.</block></para>
<para>Objects used as keys in a <see cref="T:System.Collections.Hashtable" /> are required
to either implement both <see cref="M:System.Object.GetHashCode" /> and <see cref="M:System.Object.Equals(System.Object)" /> or neither. Furthermore, for a particular key, these methods are required to produce the same results when called with
the same parameters while that key exists in a particular <see cref="T:System.Collections.Hashtable" /> . Keys cannot be mutated while they are
used in the table.</para>
<para> Every key in a <see cref="T:System.Collections.Hashtable" /> is required to be unique compared to every other key
in the table. An object that implements <see cref="T:System.Collections.IComparer" /> can determine whether two keys are unequal.
The default comparer for a key is the key's implementation of
<see cref="M:System.Object.Equals(System.Object)" qualify="true" />.</para>
<para>Each value in a <see cref="T:System.Collections.Hashtable" /> is required to provide its own hash function, which
can be accessed by calling <see cref="M:System.Collections.Hashtable.GetHash(System.Object)" />. Alternatively, if an object that implements
<see cref="T:System.Collections.IHashCodeProvider" /> is
passed to a <see cref="T:System.Collections.Hashtable" /> constructor, the custom hash
function provided by that object is used for every value in the table.</para>
<block subset="none" type="note">
<para> The default capacity (i.e. the default number of entries that can be contained) of a <see cref="T:System.Collections.Hashtable" /> is
zero.</para>
<para> When an entry is added to the <see cref="T:System.Collections.Hashtable" />, the entry is placed
into a bucket based on the hash code obtained from the <see cref="T:System.Collections.IHashCodeProvider" /> implementation of the table, or
the <see cref="M:System.Object.GetHashCode" /> if no
specific <see cref="T:System.Collections.IHashCodeProvider" />
was provided. Subsequent lookups of
the key use the hash code of the key to search in only one particular bucket,
substantially reducing the number of key comparisons required to find an entry.</para>
<para>As entries are added to a <see cref="T:System.Collections.Hashtable" />, and the maximum capacity of the table is
reached, the number of buckets in the table is automatically increased to the
smallest prime number that is larger than twice the current number of
buckets.</para>
<para>A <see cref="T:System.Collections.Hashtable" /> can
safely support
one writer and multiple readers concurrently. To support multiple writers,
all operations
are required to be done through the wrapper returned by the <see cref="M:System.Collections.Hashtable.Synchronized(System.Collections.Hashtable)" /> method.</para>
</block>
</remarks>
<example>
<para> The following example shows
how to iterate over the elements of a <see cref="T:System.Collections.Hashtable" />.</para>
<c>
<para>[C#]</para>
<para>foreach (DictionaryEntry myEntry in
myHashtable)</para>
</c>
</example>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor()" />
<MemberSignature Language="C#" Value="public Hashtable ();" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters />
<Docs>
<summary>
<para> Constructs and initializes a new instance of the <see cref="T:System.Collections.Hashtable" />
class.</para>
</summary>
<remarks>
<para>The new instance is initialized with the default
capacity, <see cref="T:System.Collections.IHashCodeProvider" />, and <see cref="T:System.Collections.IComparer" />.</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Collections.IDictionary d)" />
<MemberSignature Language="C#" Value="public Hashtable (System.Collections.IDictionary d);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="d" Type="System.Collections.IDictionary" />
</Parameters>
<Docs>
<param name="d">The <see cref="T:System.Collections.IDictionary" /> used to initialize the elements of the new instance.</param>
<summary>
<para> Constructs and initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class using
the values of the specified <see cref="T:System.Collections.IDictionary" />.</para>
</summary>
<remarks>
<para>The initial capacity of the new instance is set to the
number of entries in <paramref name="d" />. The new instance is initialized with the default
<see cref="T:System.Collections.IHashCodeProvider" /> and <see cref="T:System.Collections.IComparer" />.</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="d" /> is <see langword="null" />.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (System.Collections.IEqualityComparer equalityComparer);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="equalityComparer" Type="System.Collections.IEqualityComparer" />
</Parameters>
<Docs>
<param name="equalityComparer">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(int32 capacity)" />
<MemberSignature Language="C#" Value="public Hashtable (int capacity);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="capacity" Type="System.Int32" />
</Parameters>
<Docs>
<param name="capacity">A <see cref="T:System.Int32" /> that specifies the minimum number of entries that the new <see cref="T:System.Collections.Hashtable" /> instance can initially contain. </param>
<summary>
<para> Constructs and initializes a new instance of the <see cref="T:System.Collections.Hashtable" />
class with the specified initial capacity.</para>
</summary>
<remarks>
<para>The new instance is initialized with the default <see cref="T:System.Collections.IHashCodeProvider" /> and <see cref="T:System.Collections.IComparer" />.</para>
<para>The number of entries that the new instance can contain can be greater than <paramref name="capacity" />.</para>
</remarks>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="capacity" /> < 0. </exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (System.Collections.IDictionary d, System.Collections.IEqualityComparer equalityComparer);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="d" Type="System.Collections.IDictionary" />
<Parameter Name="equalityComparer" Type="System.Collections.IEqualityComparer" />
</Parameters>
<Docs>
<param name="d">To be added.</param>
<param name="equalityComparer">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (System.Collections.IDictionary d, float loadFactor);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="d" Type="System.Collections.IDictionary" />
<Parameter Name="loadFactor" Type="System.Single" />
</Parameters>
<Docs>
<param name="d">To be added.</param>
<param name="loadFactor">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Collections.IHashCodeProvider hcp, class System.Collections.IComparer comparer)" />
<MemberSignature Language="C#" Value="public Hashtable (System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="hcp" Type="System.Collections.IHashCodeProvider" />
<Parameter Name="comparer" Type="System.Collections.IComparer" />
</Parameters>
<Docs>
<param name="hcp">
<para>The <see cref="T:System.Collections.IHashCodeProvider" /> that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />; or, <see langword="null" /> to use the default hash code provider.</para>
</param>
<param name="comparer">
<para>The <see cref="T:System.Collections.IComparer" /> to use to determine whether two keys are equal; or, <see langword="null" /> to use the default comparer.</para>
</param>
<summary>
<para> Constructs and initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class with the specified <see cref="T:System.Collections.IHashCodeProvider" /> and the specified <see cref="T:System.Collections.IComparer" />.</para>
</summary>
<remarks>
<para>The new instance is initialized with the default capacity.</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Please use Hashtable(IEqualityComparer) instead")</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (int capacity, System.Collections.IEqualityComparer equalityComparer);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="capacity" Type="System.Int32" />
<Parameter Name="equalityComparer" Type="System.Collections.IEqualityComparer" />
</Parameters>
<Docs>
<param name="capacity">To be added.</param>
<param name="equalityComparer">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (int capacity, float loadFactor);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="capacity" Type="System.Int32" />
<Parameter Name="loadFactor" Type="System.Single" />
</Parameters>
<Docs>
<param name="capacity">To be added.</param>
<param name="loadFactor">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected Hashtable (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
<Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
</Parameters>
<Docs>
<param name="info">To be added.</param>
<param name="context">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Collections.IDictionary d, class System.Collections.IHashCodeProvider hcp, class System.Collections.IComparer comparer)" />
<MemberSignature Language="C#" Value="public Hashtable (System.Collections.IDictionary d, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="d" Type="System.Collections.IDictionary" />
<Parameter Name="hcp" Type="System.Collections.IHashCodeProvider" />
<Parameter Name="comparer" Type="System.Collections.IComparer" />
</Parameters>
<Docs>
<param name="d">The <see cref="T:System.Collections.IDictionary" /> used to initialize the elements of the new instance.</param>
<param name="hcp">
<para>The <see cref="T:System.Collections.IHashCodeProvider" /> that supplies the hash codes for all keys in the new instance; or, <see langword="null" /> to use the default hash code provider.</para>
</param>
<param name="comparer">
<para>The <see cref="T:System.Collections.IComparer" /> to use to determine whether two keys are equal in the new instance, or <see langword="null" /> to use the default comparer.</para>
</param>
<summary>
<para> Constructs and initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class
using the values of the specified <see cref="T:System.Collections.IDictionary" />, the specified <see cref="T:System.Collections.IHashCodeProvider" />, and the specified <see cref="T:System.Collections.IComparer" />.</para>
</summary>
<remarks>
<para>The initial capacity of the new
instance is set to the number of entries in <paramref name="d" />.</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="d" /> is <see langword="null" />. </exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Please use Hashtable(IDictionary, IEqualityComparer) instead")</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (System.Collections.IDictionary d, float loadFactor, System.Collections.IEqualityComparer equalityComparer);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="d" Type="System.Collections.IDictionary" />
<Parameter Name="loadFactor" Type="System.Single" />
<Parameter Name="equalityComparer" Type="System.Collections.IEqualityComparer" />
</Parameters>
<Docs>
<param name="d">To be added.</param>
<param name="loadFactor">To be added.</param>
<param name="equalityComparer">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(int32 capacity, class System.Collections.IHashCodeProvider hcp, class System.Collections.IComparer comparer)" />
<MemberSignature Language="C#" Value="public Hashtable (int capacity, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="capacity" Type="System.Int32" />
<Parameter Name="hcp" Type="System.Collections.IHashCodeProvider" />
<Parameter Name="comparer" Type="System.Collections.IComparer" />
</Parameters>
<Docs>
<param name="capacity">A <see cref="T:System.Int32" /> that specifies the minimum number of entries that the new <see cref="T:System.Collections.Hashtable" /> instance can initially contain. </param>
<param name="hcp">
<para>The <see cref="T:System.Collections.IHashCodeProvider" /> that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />; or, <see langword="null" /> to use the default hash code provider.</para>
</param>
<param name="comparer">
<para>The <see cref="T:System.Collections.IComparer" /> to use to determine whether two keys are equal, or <see langword="null" /> to use the default comparer.</para>
</param>
<summary>
<para> Constructs and initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class with the specified initial capacity, the specified
<see cref="T:System.Collections.IHashCodeProvider" />, and the specified <see cref="T:System.Collections.IComparer" />.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Please use Hashtable(int, IEqualityComparer) instead")</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (int capacity, float loadFactor, System.Collections.IEqualityComparer equalityComparer);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="capacity" Type="System.Int32" />
<Parameter Name="loadFactor" Type="System.Single" />
<Parameter Name="equalityComparer" Type="System.Collections.IEqualityComparer" />
</Parameters>
<Docs>
<param name="capacity">To be added.</param>
<param name="loadFactor">To be added.</param>
<param name="equalityComparer">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (System.Collections.IDictionary d, float loadFactor, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="d" Type="System.Collections.IDictionary" />
<Parameter Name="loadFactor" Type="System.Single" />
<Parameter Name="hcp" Type="System.Collections.IHashCodeProvider" />
<Parameter Name="comparer" Type="System.Collections.IComparer" />
</Parameters>
<Docs>
<param name="d">To be added.</param>
<param name="loadFactor">To be added.</param>
<param name="hcp">To be added.</param>
<param name="comparer">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Please use Hashtable(IDictionary, float, IEqualityComparer) instead")</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Hashtable (int capacity, float loadFactor, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer);" />
<MemberType>Constructor</MemberType>
<Parameters>
<Parameter Name="capacity" Type="System.Int32" />
<Parameter Name="loadFactor" Type="System.Single" />
<Parameter Name="hcp" Type="System.Collections.IHashCodeProvider" />
<Parameter Name="comparer" Type="System.Collections.IComparer" />
</Parameters>
<Docs>
<param name="capacity">To be added.</param>
<param name="loadFactor">To be added.</param>
<param name="hcp">To be added.</param>
<param name="comparer">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Please use Hashtable(int, float, IEqualityComparer) instead")</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="Add">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void Add(object key, object value)" />
<MemberSignature Language="C#" Value="public virtual void Add (object key, object value);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Object" />
<Parameter Name="value" Type="System.Object" />
</Parameters>
<Docs>
<param name="key">The key of the entry to add.</param>
<param name="value">The value of the entry to add.</param>
<summary>
<para>Adds an entry with the specified key and value into the
current instance.</para>
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<para>
<paramref name="key" /> is <see langword="null" />.</para>
</exception>
<exception cref="T:System.ArgumentException">
<para>An entry with the same key already exists in the current instance.</para>
</exception>
<exception cref="T:System.NotSupportedException">
<para>The current instance is read-only or has a fixed size.</para>
</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Clear">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void Clear()" />
<MemberSignature Language="C#" Value="public virtual void Clear ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Removes all entries from the current instance.</para>
</summary>
<remarks>
<para>
<block subset="none" type="note">This method is implemented to support
the <see cref="T:System.Collections.IDictionary" /> interface.</block>
</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<block subset="none" type="default">
<para>The value of each key and value in the current instance is set to
<see langword="null" />. The <see cref="P:System.Collections.Hashtable.Count" /> property of the current instance
is set to zero. The capacity of the current instance remains
unchanged.</para>
<para>If the current instance is empty, it remains unchanged and no exception is
thrown.</para>
</block>
</remarks>
<exception cref="T:System.NotSupportedException">The current instance is read-only.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.ConstrainedExecution.ReliabilityContract(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="Clone">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual object Clone()" />
<MemberSignature Language="C#" Value="public virtual object Clone ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Creates a <see cref="T:System.Object" />
that is a copy of the current instance.</para>
</summary>
<returns>
<para>A <see cref="T:System.Object" />
that is a copy of the current instance.</para>
</returns>
<remarks>
<para>
<block subset="none" type="note">This method is implemented to support the <see cref="T:System.ICloneable" /> interface.</block>
</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">This method creates a new <see cref="T:System.Collections.Hashtable" /> instance is initialized with the same count,
<see cref="T:System.Collections.IHashCodeProvider" /> implementation, and <see cref="T:System.Collections.IComparer" /> implementation
as the current instance. The references to the objects contained by the current
instance are copied to the new instance.</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="comparer">
<MemberSignature Language="C#" Value="protected System.Collections.IComparer comparer { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Collections.IComparer</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Please use EqualityComparer property.")</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="Contains">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual bool Contains(object key)" />
<MemberSignature Language="C#" Value="public virtual bool Contains (object key);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Object" />
</Parameters>
<Docs>
<param name="key">The key to locate in the current instance.</param>
<summary>
<para> Determines whether the current instance contains the specified key.</para>
</summary>
<returns>
<para>
<see langword="true" />
if the current instance contains <paramref name="key" />; otherwise, <see langword="false" />.</para>
</returns>
<remarks>
<para>
<block subset="none" type="note">This method is implemented to support the <see cref="T:System.Collections.IDictionary" />
interface.</block>
</para>
<para>
<block subset="none" type="behaviors">As described above.</block>
</para>
<para>
<block subset="none" type="default">
This method is equivalent to <see cref="M:System.Collections.Hashtable.ContainsKey(System.Object)" />.</block>
</para>
<para>
<block subset="none" type="note">
For the default implementation, this method has a constant (O(1)) lookup time.</block>
</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />. </exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContainsKey">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual bool ContainsKey(object key)" />
<MemberSignature Language="C#" Value="public virtual bool ContainsKey (object key);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Object" />
</Parameters>
<Docs>
<param name="key">The key of the entry to locate in the current instance.</param>
<summary>
<para>Determines whether the current instance contains an entry with the specified key.</para>
</summary>
<returns>
<para>
<see langword="true" /> if
the current instance contains an entry with <paramref name="key" />; otherwise, <see langword="false" />.</para>
</returns>
<remarks>
<para>
<block subset="none" type="behaviors">As described above.</block>
</para>
<para>
<block subset="none" type="default">
This method uses <see cref="M:System.Collections.Hashtable.KeyEquals(System.Object,System.Object)" /> to compare <paramref name="key" /> to the keys in the current instance.
</block>
</para>
<para>
<block subset="none" type="note">For the default implementation, this method has a constant (O(1)) lookup
time.</block>
</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />. </exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContainsValue">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual bool ContainsValue(object value)" />
<MemberSignature Language="C#" Value="public virtual bool ContainsValue (object value);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Object" />
</Parameters>
<Docs>
<param name="value">The value to locate in the current instance.</param>
<summary>
<para>Determines whether the current instance contains an entry with the specified value.</para>
</summary>
<returns>
<para>
<see langword="true" />
if the current instance contains an
entry with <paramref name="value" />; otherwise, <see langword="false" />.</para>
</returns>
<remarks>
<para>
<block subset="none" type="note">This method is implemented to support
the <see cref="T:System.Collections.IDictionary" /> interface.</block>
</para>
<para>
<block subset="none" type="behaviors">As described above.</block>
</para>
<para>
<block subset="none" type="default">This method is equivalent to <see cref="M:System.Collections.Hashtable.ContainsKey(System.Object)" />.</block>
</para>
<para>
<block subset="none" type="note">For the default implementation, this method has a constant (O(1)) lookup
time.</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CopyTo">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void CopyTo(class System.Array array, int32 arrayIndex)" />
<MemberSignature Language="C#" Value="public virtual void CopyTo (Array array, int arrayIndex);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="array" Type="System.Array" />
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">The one-dimensional, zero-indexed <see cref="T:System.Array" /> that is the destination of the objects copied from the current instance.</param>
<param name="arrayIndex">A <see cref="T:System.Int32" /> that specifies the zero-based index in <paramref name="array" /> at which copying begins. This value is between 0 and <paramref name="array" />.Length minus the <see cref="P:System.Collections.Hashtable.Count" /> of the current instance, inclusive.</param>
<summary>
<para>Copies the entries of the current instance to a
one-dimensional <see cref="T:System.Array" /> starting at the specified index.</para>
</summary>
<remarks>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">The <see cref="T:System.Collections.DictionaryEntry" /> elements in the current instance are copied to the <see cref="T:System.Array" /> in the same order in which they are contained the
current instance. If <see cref="T:System.Collections.DictionaryEntry" /> is not
assignment-compatible with the type of <paramref name="array" />, a <see cref="T:System.InvalidCastException" />
is thrown. If an exception is thrown
while copying, the state of the current instance is undefined.</block>
</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="arrayIndex" /> < 0.</exception>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="array" /> has more than one dimension.</para>
<para>-or-</para>
<para>
<paramref name="arrayIndex" /> > <paramref name="array" />.Length - The <see cref="P:System.Collections.Hashtable.Count" /> of the current instance.</para>
</exception>
<exception cref="T:System.InvalidCastException">The type of the current instance is not assignment-compatible with the type of <paramref name="array" />.</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Count">
<MemberSignature Language="ILASM" Value=".property int32 Count { public hidebysig virtual specialname int32 get_Count() }" />
<MemberSignature Language="C#" Value="public virtual int Count { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets the number of key-and-value pairs contained in the
current instance.</para>
</summary>
<value>
<para>A <see cref="T:System.Int32" /> that specifies the number of key-and-value pairs contained in the
current instance.</para>
</value>
<remarks>
<para>This property is read-only.</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EqualityComparer">
<MemberSignature Language="C#" Value="protected System.Collections.IEqualityComparer EqualityComparer { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Collections.IEqualityComparer</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetEnumerator">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual class System.Collections.IDictionaryEnumerator GetEnumerator()" />
<MemberSignature Language="C#" Value="public virtual System.Collections.IDictionaryEnumerator GetEnumerator ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Collections.IDictionaryEnumerator</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para> Returns a <see cref="T:System.Collections.IDictionaryEnumerator" /> for the
current instance.</para>
</summary>
<returns>
<para>A <see cref="T:System.Collections.IDictionaryEnumerator" /> for the current
instance.</para>
</returns>
<remarks>
<para>If the current instance is modified
while an enumeration is in progress, a call to <see cref="M:System.Collections.IEnumerator.MoveNext" /> or <see cref="P:System.Collections.IEnumerator.Reset" /> throws <see cref="T:System.InvalidOperationException" />. </para>
<block subset="none" type="note">
<para>For detailed information regarding the use of an enumerator, see <see cref="T:System.Collections.IEnumerator" />.</para>
<para>This property is implemented to support the <see cref="T:System.Collections.IList" /> interface.</para>
</block>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetHash">
<MemberSignature Language="ILASM" Value=".method family hidebysig virtual int32 GetHash(object key)" />
<MemberSignature Language="C#" Value="protected virtual int GetHash (object key);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Object" />
</Parameters>
<Docs>
<param name="key">The <see cref="T:System.Object" /> whose hash code is to be generated.</param>
<summary>
<para>Generates a hash code for the specified key in the current instance.</para>
</summary>
<returns>
<para>A <see cref="T:System.Int32" /> containing the hash code for <paramref name="key" />.</para>
</returns>
<remarks>
<para>This method is accessible only through this class or a derived class.</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">If the current instance was instantiated with a specific <see cref="T:System.Collections.IHashCodeProvider" /> implementation, this method uses that hash
code provider; otherwise, it uses the <see cref="M:System.Object.GetHashCode" qualify="true" /> implementation of
<paramref name="key" />
.</block>
</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />. </exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetObjectData">
<MemberSignature Language="C#" Value="public virtual void GetObjectData (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
<Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
</Parameters>
<Docs>
<param name="info">To be added.</param>
<param name="context">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="hcp">
<MemberSignature Language="C#" Value="protected System.Collections.IHashCodeProvider hcp { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Collections.IHashCodeProvider</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Please use EqualityComparer property.")</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="IsFixedSize">
<MemberSignature Language="ILASM" Value=".property bool IsFixedSize { public hidebysig virtual specialname bool get_IsFixedSize() }" />
<MemberSignature Language="C#" Value="public virtual bool IsFixedSize { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Implemented to support the <see cref="T:System.Collections.IDictionary" /> interface. [Note: For more information, see <see cref="M:System.Collections.IDictionary.IsFixedSize" />.]</summary>
<value>
<para>
<see langword="true" /> if the
current instance has a fixed size; otherwise,
<see langword="false" />. </para>
</value>
<remarks>
<para>This property is read-only.</para>
<para>
<block subset="none" type="note">Elements can be modified in, but not
added to or removed from a <see cref="T:System.Collections.Hashtable" /> with a fixed size.</block>
</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">The default
value of this property is <see langword="false" /> .</block>
</para>
<para>
<block subset="none" type="overrides">Override
this property, setting it to <see langword=" true" />
, to prevent addition or removal of entries in the current instance.</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsReadOnly">
<MemberSignature Language="ILASM" Value=".property bool IsReadOnly { public hidebysig virtual specialname bool get_IsReadOnly() }" />
<MemberSignature Language="C#" Value="public virtual bool IsReadOnly { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Implemented to support the <see cref="T:System.Collections.IDictionary" /> interface. [Note: For more information, see <see cref="M:System.Collections.IDictionary.IsReadOnly" />.]</summary>
<value>
<para>
<see langword="true" /> if the
current instance is read-only; otherwise,
<see langword="false" />. </para>
</value>
<remarks>
<para>This property is read-only.</para>
<para>
<block subset="none" type="note">Elements cannot be modified in, added
to, or removed from a <see cref="T:System.Collections.Hashtable" /> that is read-only.</block>
</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">The default
value of this property is <see langword=" false" />.</block>
</para>
<para>
<block subset="none" type="overrides">Override
this property, setting it to <see langword=" true" /> , in
order to prevent the addition, removal, or modification of
entries in the current instance.</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsSynchronized">
<MemberSignature Language="ILASM" Value=".property bool IsSynchronized { public hidebysig virtual specialname bool get_IsSynchronized() }" />
<MemberSignature Language="C#" Value="public virtual bool IsSynchronized { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Implemented to support the <see cref="T:System.Collections.ICollection" /> interface. [Note: For more information, see <see cref="M:System.Collections.ICollection.IsSynchronized" />.]</summary>
<value>
<para>
<see langword="true" /> if access to
the current instance is synchronized
(thread-safe); otherwise, <see langword="false" />. </para>
</value>
<remarks>
<para>This property is read-only.</para>
<block subset="none" type="note">
<para>This property is implemented to support the <see cref="T:System.Collections.ICollection" />
interface.</para>
<para>For more information regarding synchronization of access to a <see cref="T:System.Collections.Hashtable" /> ,
see <see cref="M:System.Collections.Hashtable.Synchronized(System.Collections.Hashtable)" /> .</para>
</block>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">The default
value of this property is <see langword=" false" />.</block>
</para>
<para>
<block subset="none" type="overrides">Override
this property, setting it to <see langword=" true" />
, if thread-safety can be guaranteed for
the current instance. In order to obtain this safety, use <see cref="P:System.Collections.Hashtable.SyncRoot" /> or <see cref="M:System.Collections.Hashtable.Synchronized(System.Collections.Hashtable)" />
.</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Item">
<MemberSignature Language="ILASM" Value=".property object Item[object key] { public hidebysig virtual specialname object get_Item(object key) public hidebysig virtual specialname void set_Item(object key, object value) }" />
<MemberSignature Language="C#" Value="public virtual object this[object key] { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Object" />
</Parameters>
<Docs>
<param name="key">The key whose value to get or set.</param>
<summary>
<para>Gets or sets the value in the current instance that is associated with the specified key.</para>
</summary>
<value>
<para> The value in the current instance that is associated
with <paramref name="key" />. If <paramref name="key" /> is
not contained in the current instance, attempting to get it returns
<see langword="null" />, and attempting to set it creates a new entry
using <paramref name="key" />
.</para>
</value>
<remarks>
<para>
<block subset="none" type="note">This property provides the ability to
access a specific element in the current instance using the following notation:
<c>myCollection[key]</c>
.</block>
</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">If this property is being set and <paramref name="key" /> is already contained
in the current instance, the value associated with the old key is
replaced.</block>
</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />. </exception>
<exception cref="T:System.NotSupportedException">
<para>The property is being set and the current instance is read-only.</para>
<para>The property is being set, <paramref name="key" /> is not contained in the current instance, and the current instance has a fixed size.</para>
</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="KeyEquals">
<MemberSignature Language="ILASM" Value=".method family hidebysig virtual bool KeyEquals(object item, object key)" />
<MemberSignature Language="C#" Value="protected virtual bool KeyEquals (object item, object key);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="item" Type="System.Object" />
<Parameter Name="key" Type="System.Object" />
</Parameters>
<Docs>
<param name="item">The <see cref="T:System.Object" /> to compare with <paramref name="key" />.</param>
<param name="key">The key in the current instance to compare with <paramref name="item" />.</param>
<summary>
<para>Determines whether the specified <see cref="T:System.Object" /> and the specified key in the
current instance represent the same value.</para>
</summary>
<returns>
<para>
<see langword="true" /> if <paramref name="item" /> and <paramref name="key" /> represent the
same value; otherwise,
<see langword="false" />. </para>
</returns>
<remarks>
<para>This method is accessible only through this class or a derived class.</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">If the
current instance was initialized with a specified <see cref="T:System.Collections.IComparer" /> implementation, this method uses that
implementation to perform the comparison; otherwise, the <see cref="M:System.Object.Equals(System.Object)" /> implementation of <paramref name="item" /> is used.</block>
</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<para>
<paramref name="item" /> is <see langword="null" />. </para>
<para>-or-</para>
<para>
<paramref name="key" /> is <see langword="null" />. </para>
</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Keys">
<MemberSignature Language="ILASM" Value=".property class System.Collections.ICollection Keys { public hidebysig virtual specialname class System.Collections.ICollection get_Keys() }" />
<MemberSignature Language="C#" Value="public virtual System.Collections.ICollection Keys { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Collections.ICollection</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Implemented to support the <see cref="T:System.Collections.IDictionary" /> interface. [Note: For more information, see <see cref="M:System.Collections.IDictionary.Keys" />.]</summary>
<value>
<para>A <see cref="T:System.Collections.ICollection" /> containing the keys of the current instance.</para>
</value>
<remarks>
<para>This property is read-only.</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<block subset="none" type="default">
<para>The order of the keys in the <see cref="T:System.Collections.ICollection" /> is unspecified, but it is
the same order as the associated values in the <see cref="T:System.Collections.ICollection" />
returned by the <see cref="P:System.Collections.Hashtable.Values" /> method.</para>
<para> The returned <see cref="T:System.Collections.ICollection" /> is a reference to the current instance, not
a static copy. Therefore, changes to the current instance continue to be
reflected in the <see cref="T:System.Collections.ICollection" />.</para>
</block>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnDeserialization">
<MemberSignature Language="C#" Value="public virtual void OnDeserialization (object sender);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="sender" Type="System.Object" />
</Parameters>
<Docs>
<param name="sender">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Remove">
<MemberSignature Language="ILASM" Value=".method public hidebysig virtual void Remove(object key)" />
<MemberSignature Language="C#" Value="public virtual void Remove (object key);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Object" />
</Parameters>
<Docs>
<param name="key">The key of the entry to remove.</param>
<summary>
<para>Removes the entry with the specified key from the
current instance.</para>
</summary>
<remarks>
<para>
<block subset="none" type="note">This method is implemented to support
the <see cref="T:System.Collections.IDictionary" /> interface.</block>
</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">This method uses the <see cref="M:System.Object.Equals(System.Object)" /> implementation of
<paramref name="key" /> to locate it in the current instance. If <paramref name="key" /> is
found in the current instance, the values of both <paramref name="key" /> and its
associated value are set to <see langword="null" />. If <paramref name="key" /> is not
found in the
current instance, no exception is thrown and the current
instance remains unchanged.</block>
</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> is <see langword="null" />. </exception>
<exception cref="T:System.NotSupportedException">
<para>The current instance is read-only or has a fixed size.</para>
</exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.ConstrainedExecution.ReliabilityContract(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="Synchronized">
<MemberSignature Language="ILASM" Value=".method public hidebysig static class System.Collections.Hashtable Synchronized(class System.Collections.Hashtable table)" />
<MemberSignature Language="C#" Value="public static System.Collections.Hashtable Synchronized (System.Collections.Hashtable table);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Collections.Hashtable</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="table" Type="System.Collections.Hashtable" />
</Parameters>
<Docs>
<param name="table">The <see cref="T:System.Collections.Hashtable" /> to synchronize.</param>
<summary>
<para>Returns a synchronized (thread-safe) wrapper for the specified <see cref="T:System.Collections.Hashtable" />.</para>
</summary>
<returns>
<para>A synchronized (thread-safe) wrapper for <paramref name="table" />.</para>
</returns>
<remarks>
<para>This method returns a new <see cref="T:System.Collections.Hashtable" /> instance that contains values equal to the
values of <paramref name="table" /> , and provides synchronized access to those values.</para>
<para>If more than one thread is to write to a <see cref="T:System.Collections.Hashtable" /> concurrently, all
write
operations are required to be done through this wrapper.</para>
<para>
<block subset="none" type="note">A <see cref="T:System.Collections.Hashtable" /> can safely support one
writer and multiple readers concurrently.</block>
</para>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="table" /> is <see langword="null" />. </exception>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SyncRoot">
<MemberSignature Language="ILASM" Value=".property object SyncRoot { public hidebysig virtual specialname object get_SyncRoot() }" />
<MemberSignature Language="C#" Value="public virtual object SyncRoot { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets a <see cref="T:System.Object" /> that can be used to synchronize access to
the current instance.</para>
</summary>
<value>
<para>A <see cref="T:System.Object" /> that can be used to synchronize access to the
current instance.</para>
</value>
<remarks>
<para>This property is read-only.</para>
<para>A thread is required to perform synchronized operations only on the <see cref="P:System.Collections.Hashtable.SyncRoot" /> of a <see cref="T:System.Collections.Hashtable" />, not directly on
the table itself. This maintains proper synchronization with any other threads
concurrently modifying the table.</para>
<para>
<block subset="none" type="note">This property is implemented to support
the <see cref="T:System.Collections.ICollection" /> interface.</block>
</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<para>
<block subset="none" type="default">This method returns a reference to
the current instance.</block>
</para>
<para>
<block subset="none" type="overrides">Override this property to return an object on which to lock when
implementing a collection that wraps another collection (using a subset of it, for
example). This is useful when providing synchronized access through two or more
wrapper collections to the same underlying collection. Typically, this property returns a
reference to the current instance.</block>
</para>
<para>
<block subset="none" type="usage">Use this property to obtain a <see cref="T:System.Object" /> that can be used to synchronize access to the current
instance.</block>
</para>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="System.Collections.IEnumerable.GetEnumerator">
<MemberSignature Language="C#" Value="System.Collections.IEnumerator IEnumerable.GetEnumerator ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Collections.IEnumerator</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Implemented to support the <see cref="T:System.Collections.IEnumerable" /> interface. [Note: For more information, see <see cref="M:System.Collections.IEnumerable.GetEnumerator" />.]</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Values">
<MemberSignature Language="ILASM" Value=".property class System.Collections.ICollection Values { public hidebysig virtual specialname class System.Collections.ICollection get_Values() }" />
<MemberSignature Language="C#" Value="public virtual System.Collections.ICollection Values { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Collections.ICollection</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
<para>Gets a <see cref="T:System.Collections.ICollection" /> containing the values of the current
instance.</para>
</summary>
<value>
<para>A <see cref="T:System.Collections.ICollection" /> containing the values of the current
instance.</para>
</value>
<remarks>
<para>This property is read-only.</para>
<para>
<block subset="none" type="behaviors">As described
above.</block>
</para>
<block subset="none" type="default">
<para>The order of the values in the <see cref="T:System.Collections.ICollection" /> is unspecified, but it is
the same order as the associated keys in the <see cref="T:System.Collections.ICollection" /> returned by the <see cref="P:System.Collections.Hashtable.Keys" /> method.</para>
<para> The returned <see cref="T:System.Collections.ICollection" /> is a reference to the current instance, not
a static copy. Therefore, changes to the current instance continue to be
reflected in the <see cref="T:System.Collections.ICollection" />.</para>
</block>
</remarks>
</Docs>
<Excluded>0</Excluded>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
<TypeExcluded>0</TypeExcluded>
</Type>
|