Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.1.3.0.0)
E47892-01
Copies all of the mappings from the specified IDictionary to this cache.

Namespace: Tangosol.Net.Cache.Support
Assembly: Coherence (in Coherence.dll) Version: 12.1.3.0 (12.1.3.0)

Syntax

C#
public virtual void InsertAll(
	IDictionary dictionary
)

Parameters

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

Implements

ICache..::..InsertAll(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