V8FastHostPropertyGetter<TObject> Delegate |
Represents a method that gets the value of a fast host property.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic delegate void V8FastHostPropertyGetter<in TObject>(
TObject instance,
in V8FastResult value
)
where TObject : IV8FastHostObject
Public Delegate Sub V8FastHostPropertyGetter(Of In TObject As IV8FastHostObject) (
instance As TObject,
ByRef value As V8FastResult
)
generic<typename TObject>
where TObject : IV8FastHostObject
public delegate void V8FastHostPropertyGetter(
TObject instance,
[InAttribute] V8FastResult% value
)
type V8FastHostPropertyGetter =
delegate of
instance : 'TObject *
value : V8FastResult byref -> unit
Parameters
- instance TObject
- The object to search for the property.
- value V8FastResult
- On return, the property value if it was found.
Type Parameters
- TObject
- The fast host object type.
See Also