Click or drag to resize

AbstractKeyBasedCacheInsertAll Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Copies all of the mappings from the specified IDictionary to this cache.

Namespace:  Tangosol.Net.Cache.Support
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public virtual void InsertAll(
	IDictionary dictionary
)

Parameters

dictionary
Type: System.CollectionsIDictionary
The IDictionary containing the key/value pairings to insert into this cache.

Implements

ICacheInsertAll(IDictionary)
Remarks
The effect of this call is equivalent to that of calling Insert(Object, Object) on this cache once for each mapping in the passed dictionary. The behavior of this operation is unspecified if the passed dictionary is modified while the operation is in progress.
See Also