JSFunction constructor (1 of 26)
Creates a new unnamed JS function takes no arguments and returns void.
public JSFunction(Action callback)
See Also
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (2 of 26)
Creates a new unnamed JS function takes five arguments and returns void.
public JSFunction(Action<JSValue, JSValue, JSValue, JSValue, JSValue> callback)
parameter | description |
---|---|
callback |
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (3 of 26)
Creates a new unnamed JS function takes four arguments and returns void.
public JSFunction(Action<JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (4 of 26)
Creates a new unnamed JS function takes three arguments and returns void.
public JSFunction(Action<JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (5 of 26)
Creates a new unnamed JS function takes two arguments and returns void.
public JSFunction(Action<JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (6 of 26)
Creates a new unnamed JS function takes one argument and returns void.
public JSFunction(Action<JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (7 of 26)
Creates a new unnamed JS function takes five arguments and returns a value.
public JSFunction(Func<JSValue, JSValue, JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (8 of 26)
Creates a new unnamed JS function takes four arguments and returns a value.
public JSFunction(Func<JSValue, JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (9 of 26)
Creates a new unnamed JS function takes three arguments and returns a value.
public JSFunction(Func<JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (10 of 26)
Creates a new unnamed JS function takes two arguments and returns a value.
public JSFunction(Func<JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (11 of 26)
Creates a new unnamed JS function takes one argument and returns a value.
public JSFunction(Func<JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (12 of 26)
Creates a new unnamed JS function takes no arguments and returns a value.
public JSFunction(Func<JSValue> callback)
parameter | description |
---|---|
callback |
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (13 of 26)
Creates a new unnamed JS function with a callback and optional callback data.
public JSFunction(JSCallback callback, object? callbackData = null)
See Also
- delegate JSCallback
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (14 of 26)
Creates a new named JS function takes no arguments and returns void.
public JSFunction(string name, Action callback)
See Also
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (15 of 26)
Creates a new named JS function takes five arguments and returns void.
public JSFunction(string name, Action<JSValue, JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (16 of 26)
Creates a new named JS function takes four arguments and returns void.
public JSFunction(string name, Action<JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (17 of 26)
Creates a new named JS function takes three arguments and returns void.
public JSFunction(string name, Action<JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (18 of 26)
Creates a new named JS function takes two arguments and returns void.
public JSFunction(string name, Action<JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (19 of 26)
Creates a new named JS function takes one argument and returns void.
public JSFunction(string name, Action<JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (20 of 26)
Creates a new named JS function takes five arguments and returns a value.
public JSFunction(string name, Func<JSValue, JSValue, JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (21 of 26)
Creates a new named JS function takes four arguments and returns a value.
public JSFunction(string name, Func<JSValue, JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (22 of 26)
Creates a new named JS function takes three arguments and returns a value.
public JSFunction(string name, Func<JSValue, JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (23 of 26)
Creates a new named JS function takes two arguments and returns a value.
public JSFunction(string name, Func<JSValue, JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (24 of 26)
Creates a new named JS function takes one argument and returns a value.
public JSFunction(string name, Func<JSValue, JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (25 of 26)
Creates a new named JS function takes no arguments and returns a value.
public JSFunction(string name, Func<JSValue> callback)
See Also
- struct JSValue
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi
JSFunction constructor (26 of 26)
Creates a new named JS function with a callback and optional callback data.
public JSFunction(string name, JSCallback callback, object? callbackData = null)
See Also
- delegate JSCallback
- struct JSFunction
- namespace Microsoft.JavaScript.NodeApi