V8FastHostMethod<TObject>(TObject, String, V8FastHostObjectConfigurator<V8FastHostMethod<TObject>>, V8FastHostMethodInvoker<TObject>) Constructor |
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic V8FastHostMethod(
TObject parent,
string name,
V8FastHostObjectConfigurator<V8FastHostMethod<TObject>> configurator,
V8FastHostMethodInvoker<TObject> invoker
)
Public Sub New (
parent As TObject,
name As String,
configurator As V8FastHostObjectConfigurator(Of V8FastHostMethod(Of TObject)),
invoker As V8FastHostMethodInvoker(Of TObject)
)
public:
V8FastHostMethod(
TObject parent,
String^ name,
V8FastHostObjectConfigurator<V8FastHostMethod<TObject>^>^ configurator,
V8FastHostMethodInvoker<TObject>^ invoker
)
new :
parent : 'TObject *
name : string *
configurator : V8FastHostObjectConfigurator<V8FastHostMethod<'TObject>> *
invoker : V8FastHostMethodInvoker<'TObject> -> V8FastHostMethod
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