V8FastHostMethodInvoker<TObject> Delegate |
Represents a method that invokes a fast host method.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic delegate void V8FastHostMethodInvoker<in TObject>(
TObject instance,
in V8FastArgs args,
in V8FastResult result
)
where TObject : IV8FastHostObject
Public Delegate Sub V8FastHostMethodInvoker(Of In TObject As IV8FastHostObject) (
instance As TObject,
ByRef args As V8FastArgs,
ByRef result As V8FastResult
)
generic<typename TObject>
where TObject : IV8FastHostObject
public delegate void V8FastHostMethodInvoker(
TObject instance,
[InAttribute] V8FastArgs% args,
[InAttribute] V8FastResult% result
)
type V8FastHostMethodInvoker =
delegate of
instance : 'TObject *
args : V8FastArgs byref *
result : V8FastResult byref -> unit
Parameters
- instance TObject
- The object whose method to invoke.
- args V8FastArgs
- The arguments to pass to the method.
- result V8FastResult
- On return, the method's return value.
Type Parameters
- TObject
- The fast host object type.
See Also