Click or drag to resize

V8FastHostPropertyGetter<TObject> Delegate

Represents a method that gets the value of a fast host property.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public delegate void V8FastHostPropertyGetter<in TObject>(
	TObject instance,
	 in V8FastResult value
)
where TObject : IV8FastHostObject

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