Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
SafeConfigurablePofContext is an extension of ConfigurablePofContext that can serialize and deserialize any valid POF user type, even those that have not been explicitly configured, as well as any .NET serializable types.

Namespace: Tangosol.IO.Pof
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public class SafeConfigurablePofContext : ConfigurablePofContext

Remarks

Important note: this class is meant to be used only during application design time and replaced with the ConfigurablePofContext for production deployments as it has the following limitations:
  • SafeConfigurablePofContext is supported only for .NET clients;
  • Its performance is less optimal than of the ConfigurablePofContext;
  • The serialized form produced by the SafeConfigurablePofContext will not be recognized by POF aware ValueExtractors.

For user types that have been explicitly configured, this IPofContext behaves identically to the ConfigurablePofContext.

Inheritance Hierarchy

System..::..Object
  Tangosol.IO.Pof..::..ConfigurablePofContext
    Tangosol.IO.Pof..::..SafeConfigurablePofContext

See Also