ArrayMap.PutAll Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PutAll(ArrayMap) |
Perform a |
PutAll(IDictionary) |
Perform a |
PutAll(ArrayMap)
Perform a #put(Object, Object)
of all key/value pairs in <var>array</var>
[Android.Runtime.Register("putAll", "(Landroid/util/ArrayMap;)V", "")]
public void PutAll (Android.Util.ArrayMap? array);
[<Android.Runtime.Register("putAll", "(Landroid/util/ArrayMap;)V", "")>]
member this.PutAll : Android.Util.ArrayMap -> unit
Parameters
- array
- ArrayMap
The array whose contents are to be retrieved.
- Attributes
Remarks
Perform a #put(Object, Object)
of all key/value pairs in <var>array</var>
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
PutAll(IDictionary)
Perform a #put(Object, Object)
of all key/value pairs in <var>map</var>
[Android.Runtime.Register("putAll", "(Ljava/util/Map;)V", "")]
public void PutAll (System.Collections.IDictionary? map);
[<Android.Runtime.Register("putAll", "(Ljava/util/Map;)V", "")>]
abstract member PutAll : System.Collections.IDictionary -> unit
override this.PutAll : System.Collections.IDictionary -> unit
Parameters
- map
- IDictionary
The map whose contents are to be retrieved.
Implements
- Attributes
Remarks
Perform a #put(Object, Object)
of all key/value pairs in <var>map</var>
Java documentation for android.util.ArrayMap.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.