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.GenericAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic virtual Object ReadTransform(
FieldInfo fi,
Type type,
Object serializeValue
)
Public Overridable Function ReadTransform (
fi As FieldInfo,
type As Type,
serializeValue As Object
) As Object
public:
virtual Object^ ReadTransform(
FieldInfo^ fi,
Type^ type,
Object^ serializeValue
)
abstract ReadTransform :
fi : FieldInfo *
type : Type *
serializeValue : Object -> Object
override ReadTransform :
fi : FieldInfo *
type : Type *
serializeValue : Object -> Object
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
if you decide not to transform the value.
See Also