Invoke()

Calls a method on the given object passing in the attributes

Usage

OBJECT = Invoke( cfcobj, method, arguments )
Argument Summary
cfcobj Instance of the CFC object
method the name of the method to call on the CFC
arguments the structure that represents the arguments that will be passed to the method [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Invoke(
   cfcobj=?, 
   method=?, 
   arguments=?
);

Supports passing parameters as a structure using ArgumentCollection:

Invoke( ArgumentCollection={
   cfcobj : ?, 
   method : ?, 
   arguments : ?
} );