Click or drag to resize

V8FastHostPropertySetter<TObject> Delegate

Represents a method that sets 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 V8FastHostPropertySetter<in TObject>(
	TObject instance,
	 in V8FastArg value
)
where TObject : IV8FastHostObject

Parameters

instance  TObject
The object whose property to set.
value  V8FastArg
The property value.

Type Parameters

TObject
The fast host object type.
See Also