V8FastHostObjectConfiguration<TObject>.AddPropertyAccessors(String, V8FastHostPropertyGetter<TObject>, V8FastHostPropertySetter<TObject>) Method |
Adds accessors for a property.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic void AddPropertyAccessors(
string name,
V8FastHostPropertyGetter<TObject> getter,
V8FastHostPropertySetter<TObject> setter
)
Public Sub AddPropertyAccessors (
name As String,
getter As V8FastHostPropertyGetter(Of TObject),
setter As V8FastHostPropertySetter(Of TObject)
)
public:
void AddPropertyAccessors(
String^ name,
V8FastHostPropertyGetter<TObject>^ getter,
V8FastHostPropertySetter<TObject>^ setter
)
member AddPropertyAccessors :
name : string *
getter : V8FastHostPropertyGetter<'TObject> *
setter : V8FastHostPropertySetter<'TObject> -> unit
Parameters
- name String
- The property name.
- getter V8FastHostPropertyGetter<TObject>
- A callback that gets the property value.
- setter V8FastHostPropertySetter<TObject>
- A callback that sets the property value.
Remarks
Properties configured by this method are not enumerable and cannot be deleted.
See Also