Whatever message this page gives is out now! Go check it out!
boolean function canDeSerialize(type)Parameter | Description |
type | Required. String. The type to which the data has to be deserialized. |
<cffunction access="remote" name="canDeSerialize" returntype="boolean">
<cfargument name="type" type="string"/>
<!--- If you need to deserialize only XML using the custom serializer. --->
<cfif #type# eq "XML">
<cfreturn true>
<cfelse>
<cfreturn false>
</cfif>
</cffunction>