V8FastHostFieldAccessor<TObject, TField> Delegate |
Represents a method that provides access to a field within a fast host object.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic delegate ref TField V8FastHostFieldAccessor<in TObject, TField>(
TObject instance
)
where TObject : IV8FastHostObject
Public Delegate Function V8FastHostFieldAccessor(Of In TObject As IV8FastHostObject, TField) (
instance As TObject
) As TField
generic<typename TObject, typename TField>
where TObject : IV8FastHostObject
public delegate TField% V8FastHostFieldAccessor(
TObject instance
)
type V8FastHostFieldAccessor =
delegate of
instance : 'TObject -> 'TField
Parameters
- instance TObject
- The object whose field to access.
Type Parameters
- TObject
- The fast host object type.
- TField
- The field type.
Return Value
TFieldA reference to the field.
See Also