V8FastHostFunctionInvoker Delegate |
Represents a method that invokes a fast host function.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic delegate void V8FastHostFunctionInvoker(
bool asConstructor,
in V8FastArgs args,
in V8FastResult result
)
Public Delegate Sub V8FastHostFunctionInvoker (
asConstructor As Boolean,
ByRef args As V8FastArgs,
ByRef result As V8FastResult
)
public delegate void V8FastHostFunctionInvoker(
bool asConstructor,
[InAttribute] V8FastArgs% args,
[InAttribute] V8FastResult% result
)
type V8FastHostFunctionInvoker =
delegate of
asConstructor : bool *
args : V8FastArgs byref *
result : V8FastResult byref -> unit
Parameters
- asConstructor Boolean
- True to invoke the function as a constructor, false otherwise.
- args V8FastArgs
- The arguments to pass to the function.
- result V8FastResult
- On return, the function's return value.
See Also