Click or drag to resize

V8FastHostMethod<TObject>(TObject, String, V8FastHostObjectConfigurator<V8FastHostMethod<TObject>>, V8FastHostMethodInvoker<TObject>) Constructor

Initializes a new V8FastHostMethod<TObject> instance with the specified configuration callback.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public V8FastHostMethod(
	TObject parent,
	string name,
	V8FastHostObjectConfigurator<V8FastHostMethod<TObject>> configurator,
	V8FastHostMethodInvoker<TObject> invoker
)

Parameters

parent  TObject
The object whose method the instance represents.
name  String
The method name.
configurator  V8FastHostObjectConfigurator<V8FastHostMethod<TObject>>
A callback for preparing the configuration associated with the instance.
invoker  V8FastHostMethodInvoker<TObject>
The method invocation callback.
See Also