Hashtable.PutAll(IDictionary) Method

Definition

Copies all of the mappings from the specified map to this hashtable.

[Android.Runtime.Register("putAll", "(Ljava/util/Map;)V", "GetPutAll_Ljava_util_Map_Handler")]
public virtual void PutAll (System.Collections.IDictionary? t);
[<Android.Runtime.Register("putAll", "(Ljava/util/Map;)V", "GetPutAll_Ljava_util_Map_Handler")>]
abstract member PutAll : System.Collections.IDictionary -> unit
override this.PutAll : System.Collections.IDictionary -> unit

Parameters

t
IDictionary

mappings to be stored in this map

Implements

Attributes

Remarks

Copies all of the mappings from the specified map to this hashtable. These mappings will replace any mappings that this hashtable had for any of the keys currently in the specified map.

Added in 1.2.

Java documentation for java.util.Hashtable.putAll(java.util.Map<? extends K, ? extends V>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to