CFC newb here again.
Am I right that there's no way to control access to cfc functions written
like this:
--------------------------
<cfcomponent displayname="my_cfc">
<cfscript>
function my_function() {
// do stuff here
|
<cfscript>
</cfcomponent>
--------------------------
Tou have to do it like this:
--------------------------
<cfcomponent displayname="my_cfc">
<cffunction name="my_function" access="private">
<cfscript>
//do stuff here
<cfscript>
</cffunction>
</cfcomponent>
--------------------------
Thanks, just want to make sure there's no relevant language feature for this
that I don't know about.
Dave Merrill
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email to
[email protected] with the words 'unsubscribe cfcdev' as the subject of the
email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting
(www.cfxhosting.com).
An archive of the CFCDev list is available at
www.mail-archive.com/[email protected]