Click or drag to resize

PofStreamReaderReadDictionary Method (Int32, IDictionary)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Read an IDictionary of key/value pairs from the POF stream.

Namespace:  Tangosol.IO.Pof
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public virtual IDictionary ReadDictionary(
	int index,
	IDictionary dict
)

Parameters

index
Type: SystemInt32
The property index to read.
dict
Type: System.CollectionsIDictionary
The optional IDictionary to initialize.

Return Value

Type: IDictionary
An IDictionary of key/value pairs object values, or null if no dictionary is passed and there is no key/value data in the POF stream.

Implements

IPofReaderReadDictionary(Int32, IDictionary)
Exceptions
ExceptionCondition
InvalidOperationException If the POF stream has already advanced past the desired property.
ArgumentNullException If dict is null.
IOException If an I/O error occurs.
See Also