Click or drag to resize
ReflectionBasedAutoSerializerReadTransform Method
Controls what field value is read during auto deserialization. Override this method to customize the data that will be read during auto deserialization. This method will only be called if {@link #transformFieldValue} returned true.

Namespace: GemStone.GemFire.Cache.Generic
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public virtual Object ReadTransform(
	FieldInfo fi,
	Type type,
	Object serializeValue
)

Parameters

fi
Type: System.ReflectionFieldInfo
the field in question
type
Type: SystemType
the original class being serialized that owns this field. Note that this field may have been inherited from a super class by this class.
serializeValue
Type: SystemObject

Return Value

Type: Object
the actual value to write for this field. Return
serializedValue
if you decide not to transform the value.
See Also