V8FastHostObjectConfiguration<TObject>.SetDynamicPropertiesGetter Method |
Sets a callback that gets the dynamic properties of a TObject instance.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic abstract void SetDynamicPropertiesGetter(
Func<TObject, IV8FastHostDynamicProperties> getter
)
Public MustOverride Sub SetDynamicPropertiesGetter (
getter As Func(Of TObject, IV8FastHostDynamicProperties)
)
public:
virtual void SetDynamicPropertiesGetter(
Func<TObject, IV8FastHostDynamicProperties^>^ getter
) abstract
abstract SetDynamicPropertiesGetter :
getter : Func<'TObject, IV8FastHostDynamicProperties> -> unit
Parameters
- getter Func<TObject, IV8FastHostDynamicProperties>
- A callback that gets the dynamic properties of a TObject instance.
See Also