Click or drag to resize

V8FastHostFieldAccessor<TObject, TField> Delegate

Represents a method that provides access to a field within a fast host object.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public delegate ref TField V8FastHostFieldAccessor<in TObject, TField>(
	TObject instance
)
where TObject : IV8FastHostObject

Parameters

instance  TObject
The object whose field to access.

Type Parameters

TObject
The fast host object type.
TField
The field type.

Return Value

TField
A reference to the field.
See Also