Creates a delegate that invokes a script function and returns no value.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public Object proc(
int argCount,
Object scriptFunc
)
Public Function proc (
argCount As Integer,
scriptFunc As Object
) As Object
public:
Object^ proc(
int argCount,
Object^ scriptFunc
)
member proc :
argCount : int *
scriptFunc : Object -> Object
Parameters
- argCount Int32
- The number of arguments to pass to the script function.
- scriptFunc Object
- The script function for which to create a delegate.
Return Value
ObjectA new delegate that invokes the specified script function and returns no value.
Remarks
This function creates a delegate that accepts
argCount arguments and
returns no value. The type of all parameters is
Object. Such a
delegate is often useful in strongly typed contexts because of
contravariance.
Example
The following code demonstrates delegating a callback to a script function.
It assumes that an instance of
ExtendedHostFunctions is exposed under
the name "host"
(see
AddHostObject).
var StringT = host.type("System.String");
var array = host.newArr(StringT, 3);
array.SetValue("first", 0);
array.SetValue("second", 1);
array.SetValue("third", 2);
var ArrayT = host.type("System.Array");
var ConsoleT = host.type("System.Console");
ArrayT.ForEach(array, host.proc(1, function (value) { ConsoleT.WriteLine(value); }));
See Also