Click or drag to resize

JavaScriptObjectFlags Enumeration

Defines JavaScript object attributes.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntax
[FlagsAttribute]
public enum JavaScriptObjectFlags
Members
Member nameValueDescription
None0 Indicates that no attributes are present.
Shared1 Indicates that the object is an ArrayBuffer, DataView, or typed array whose contents reside in shared memory.
Async2 Indicates that the object is an async function or async iterator.
Generator4 Indicates that the object is a generator function or async generator function.
Pending8 Indicates that the object is a promise that is not yet settled. If the object is a promise and this attribute is not present, then the promise is fulfilled unless Rejected is present.
Rejected16 Indicates that the object is a rejected promise. This attribute has no meaning if Pending is present.
See Also