| TypeConverterDataValueProjectorValuePostProcess Method | 
 
            Postprocesses the value passed in, which is the projection result determined by ProjectValue. Use this routine to post-process this
            value if you want to perform post-processing per value.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
 Syntax
Syntaxprotected override Object ValuePostProcess(
	Object preliminaryProjectionResult,
	Object[] sourceValues
)
Protected Overrides Function ValuePostProcess ( 
	preliminaryProjectionResult As Object,
	sourceValues As Object()
) As Object
Parameters
- preliminaryProjectionResult
- Type: SystemObject
 The preliminary projection result.
- sourceValues
- Type: SystemObject
 The source values used for the processing.
Return Value
Type: 
Object
            the projection result processed by this routine. The base class version is empty and returns preliminaryProjectionResult
            
 See Also
See Also