Click or drag to resize

JavaScriptObjectFlags Enumeration

Defines JavaScript object attributes.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
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.
See Also