ColdFusion will invoke this function before invoking the serialize() function.
Boolean. If true, the serialize() function of the custom serializer will be called. If false, ColdFusion's default serializer will be used for serialization.
boolean function canSerialize(type)
ColdFusion 11: Added this function. For more information see REST Enhancements in ColdFusion 11.
Parameter |
Description |
---|---|
type |
Required. String. The type to which the data has to be serialized. |
<cffunction access="remote" name="canSerialize" returntype="boolean"> <cfargument name="type" type="string"/> <!--- If you need to serialize only XML using the custom serializer. ---> <cfif #type# eq "XML"> <cfreturn true> <cfelse> <cfreturn false> </cfif> </cffunction>
Sign in to your account