func invokeDefaultMethod (withArguments : [Any]!) -> Any!
Executes when a script attempts to invoke a method on an exposed object directly.
Availability
Technology
func invokeUndefinedMethod(fromWebScript name: String
!,
withArguments arguments: [Any]!) -> Any!
name
The name of the undefined method.
args
The arguments passed to the undefined method.
The result of invoking the undefined method.
This method is invoked when a script attempts to invoke a method not directly exported to the scripting environment. You should return the result of the invocation, converted appropriately for the scripting environment.
func invokeDefaultMethod (withArguments : [Any]!) -> Any!