Click or drag to resize

IV8FastHostDynamicProperties Interface

Represents a set of dynamic properties keyed by name or index.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public interface IV8FastHostDynamicProperties

The IV8FastHostDynamicProperties type exposes the following members.

Properties
 NameDescription
Public propertyDynamicPropertyIndices Enumerates the indices of all existing indexed dynamic properties.
Public propertyDynamicPropertyNames Enumerates the names of all existing named dynamic properties.
Top
Methods
 NameDescription
Public methodDeleteDynamicProperty(Int32) Deletes an indexed dynamic property.
Public methodDeleteDynamicProperty(String) Deletes a named dynamic property.
Public methodGetDynamicProperty(Int32, V8FastResult) Gets the value of an indexed dynamic property.
Public methodGetDynamicProperty(String, V8FastResult) Gets the value of a named dynamic property.
Public methodHasDynamicProperty(Int32) Determines whether a dynamic property exists at the specified index.
Public methodHasDynamicProperty(String) Determines whether a dynamic property with the specified name exists.
Public methodSetDynamicProperty(Int32, V8FastArg) Sets the value of an indexed dynamic property.
Public methodSetDynamicProperty(String, V8FastArg) Sets the value of a named dynamic property.
Top
See Also