The Arguments scope exists only in a method, and is not available outside the method. The scope contains the variables that you passed into the method, including variables that you passed in the following ways:
cfargumentcollection
attribute of the cfinvoke tag
You can access variables in the Arguments scope using structure notation (Arguments.variablename
), or array notation (Arguments[1]
or Arguments[
"variablename
"]
).
The Arguments scope does not persist between calls to CFC methods.
Variables in the Arguments scope are available to pages included by the method.