Whatever message this page gives is out now! Go check it out!
boolean function canSerialize(type)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>