Click or drag to resize

V8FastHostMethodOperationsTObject, TMethod(TObject, String, Int32, V8FastHostObjectConfiguratorTMethod, V8FastHostMethodInvokerTObject) Constructor

Initializes a new V8FastHostMethodOperationsTObject, TMethod instance with the specified required argument count and configuration callback.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public V8FastHostMethodOperations(
	TObject target,
	string name,
	int requiredArgCount,
	V8FastHostObjectConfigurator<TMethod> configurator,
	V8FastHostMethodInvoker<TObject> invoker
)

Parameters

target  TObject
The object whose method the instance supports.
name  String
The method name.
requiredArgCount  Int32
The required argument count for the method.
configurator  V8FastHostObjectConfiguratorTMethod
A callback for preparing the configuration associated with the instance.
invoker  V8FastHostMethodInvokerTObject
The method invocation callback.
See Also