Click or drag to resize

V8FastHostPropertyFlags Enumeration

Defines fast host property attributes.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
[FlagsAttribute]
public enum V8FastHostPropertyFlags
Members
Member nameValueDescription
None0 Indicates that no attributes are present.
Available1 Indicates that the property exists.
Cacheable2 Indicates that the property value is a constant that may be cached for faster retrieval.
Enumerable4 Indicates that the property is enumerable via mechanisms such as for...in.
Writable8 Indicates that the property can be assigned.
Deletable16 Indicates that the property can be deleted.
See Also