Method Injection
<cffunction name="fn_InjectMethods" returntype="any"
hint="This returns the local methods of this cfc so they can be appended.<br />Abstracted out so this can be more selective about how/what it appends in future maybe. For instance, fn_InjectMethods does not need to be appended to all objects... ">
<cfscript>
var local = structNew();
structAppend(local, this);
return local;
</cfscript>
</cffunction>
CachedSince:{ts '2024-11-21 00:39:42'}