V8FastHostPropertyFlags Enumeration |
Defines fast host property attributes.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax[FlagsAttribute]
public enum V8FastHostPropertyFlags
<FlagsAttribute>
Public Enumeration V8FastHostPropertyFlags
[FlagsAttribute]
public enum class V8FastHostPropertyFlags
[<FlagsAttribute>]
type V8FastHostPropertyFlags
MembersMember name | Value | Description |
---|
None | 0 |
Indicates that no attributes are present.
|
Available | 1 |
Indicates that the property exists.
|
Cacheable | 2 |
Indicates that the property value is a constant that may be cached for faster retrieval.
|
Enumerable | 4 |
Indicates that the property is enumerable via mechanisms such as for...in.
|
Writable | 8 |
Indicates that the property can be assigned.
|
Deletable | 16 |
Indicates that the property can be deleted.
|
See Also