Click or drag to resize

SafeConfigurablePofContext Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-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.
Inheritance Hierarchy

Namespace:  Tangosol.IO.Pof
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class SafeConfigurablePofContext : ConfigurablePofContext

The SafeConfigurablePofContext type exposes the following members.

Constructors
  NameDescription
Public methodSafeConfigurablePofContext
Default constructor.
Public methodSafeConfigurablePofContext(Stream)
Create a ConfigurablePofContext that will use the passed configuration information.
Public methodSafeConfigurablePofContext(String)
Create a ConfigurablePofContext that will load configuration information from the specified locator.
Public methodSafeConfigurablePofContext(IXmlElement)
Create a ConfigurablePofContext that will use the passed configuration information.
Top
Properties
  NameDescription
Public propertyConfig
IXmlElement holding configuration information.
(Inherited from ConfigurablePofContext.)
Protected propertyConfigLocation
Obtain the location of the configuration that the ConfigurablePofContext used to configure itself.
(Inherited from ConfigurablePofContext.)
Protected propertyIsInitialized
Determine if the ConfigurablePofContext has completed its initialization.
(Inherited from ConfigurablePofContext.)
Protected propertyIsInterfaceAllowed
Determine if the ConfigurablePofContext supports the configuration of user types by specifying an interface (instead of a class) for the .NET type.
(Inherited from ConfigurablePofContext.)
Public propertyIsReferenceEnabled
Determine if Identity/Reference type support is enabled for this ConfigurablePofContext.
(Inherited from ConfigurablePofContext.)
Protected propertyIsSubclassAllowed
Determine if the ConfigurablePofContext supports the serialization of an object that is an instance of a sub-class of a configured type, but not actually an instance of a class of a configured type.
(Inherited from ConfigurablePofContext.)
Top
Methods
  NameDescription
Protected methodAppendDefaultSerializerToUserTypes
Process <default-serializer> element from specified xml configuration and appends information about serializer to each <user-type> element within <user-type-list> unless user type already has serializer specified.
(Inherited from ConfigurablePofContext.)
Protected methodCheckNotInitialized
Verify that the ConfigurablePofContext has not already been initialized.
(Inherited from ConfigurablePofContext.)
Protected methodCreatePofConfig
Create a ConfigurablePofContextPofConfig object based on a configuration that was either provided as XML, or can be loaded from the specified (or default) URI.
(Inherited from ConfigurablePofContext.)
Public methodDeserialize
Deserialize an object from a stream by reading its state using the specified DataReader object.
(Inherited from ConfigurablePofContext.)
Protected methodEnsureInitialized
Fully initialize the SafeConfigurablePofContext if it has not already been initialized.
(Overrides ConfigurablePofContextEnsureInitialized.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodGetGenericTypeId
For user types that are not registered in the POF configuration used by this PofContext, determine if the user type can be serialized using POF, otherwise determine if the user type can be serialized using standard .NET BinaryFormatter.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Protected methodGetInheritedUserTypeIdentifier
Helper method for determining the user type identifier associated with a given class that does not have a direct configured association.
(Inherited from ConfigurablePofContext.)
Protected methodGetPofConfig
Obtain the ConfigurablePofContextPofConfig that represents the initialized state of the ConfigurablePofContext.
(Inherited from ConfigurablePofContext.)
Public methodGetPofSerializer
Return an IPofSerializer that can be used to serialize and deserialize an object of the specified user type to and from a POF stream.
(Overrides ConfigurablePofContextGetPofSerializer(Int32).)
Protected methodGetSerializer
Returns serializer for user type specified by xmlType.
(Inherited from ConfigurablePofContext.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetType(Int32)
Determine the type associated with the given user type identifier.
(Overrides ConfigurablePofContextGetType(Int32).)
Public methodGetTypeName
Determine the name of the type associated with a user type identifier.
(Inherited from ConfigurablePofContext.)
Public methodGetUserTypeIdentifier(Object)
Determine the user type identifier associated with the given object.
(Inherited from ConfigurablePofContext.)
Public methodGetUserTypeIdentifier(String)
Determine the user type identifier associated with the given type name.
(Overrides ConfigurablePofContextGetUserTypeIdentifier(String).)
Public methodGetUserTypeIdentifier(Type)
Determine the user type identifier associated with the given type.
(Overrides ConfigurablePofContextGetUserTypeIdentifier(Type).)
Protected methodGetUserTypeIdentifierInternal(String)
Determine the user type identifier associated with the given type name.
(Inherited from ConfigurablePofContext.)
Protected methodGetUserTypeIdentifierInternal(Type)
Determine the user type identifier associated with the given type.
(Inherited from ConfigurablePofContext.)
Protected methodInitialize
Bind the ConfigurablePofContext to a URI of the configuration file, resolving all type names, etc.
(Inherited from ConfigurablePofContext.)
Public methodIsUserType(Object)
Determine if the given object is of a user type known to this IPofContext.
(Inherited from ConfigurablePofContext.)
Public methodIsUserType(String)
Determine if the type with the given name is a user type known to this IPofContext.
(Overrides ConfigurablePofContextIsUserType(String).)
Public methodIsUserType(Type)
Determine if the given type is a user type known to this IPofContext.
(Overrides ConfigurablePofContextIsUserType(Type).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodResolveType
Returns Type specified by xmlType with configuration information.
(Inherited from ConfigurablePofContext.)
Public methodSerialize
Serialize an object to a stream by writing its state using the specified DataWriter object.
(Inherited from ConfigurablePofContext.)
Protected methodThrowException
Assemble and throw an informative exception based on the passed details.
(Inherited from ConfigurablePofContext.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldStatic memberTYPE_PORTABLE
The type identifier for objects that implement the PortableObject interface.
Public fieldStatic memberTYPE_SERIALIZABLE
The type identifier for .NET Serializable objects.
Top
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.

See Also