DocumentFlags Enumeration | 
            Defines document attributes.
            
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntax[FlagsAttribute]
public enum DocumentFlags
<FlagsAttribute>
Public Enumeration DocumentFlags
[FlagsAttribute]
public enum class DocumentFlags
[<FlagsAttribute>]
type DocumentFlags
Members| Member name | Value | Description | 
|---|
| None | 0 | 
            Indicates that no attributes are present.
             | 
| IsTransient | 1 | 
            Indicates that the document is temporary and can be discarded after use. Only Windows
            Script engines honor this attribute.
             | 
| AwaitDebuggerAndPause | 2 | 
            Specifies that the script engine is to wait for a debugger connection and schedule a
            pause before executing the first line of the document. Windows Script engines do not
            honor this attribute. For it to be effective, debugging features must be enabled, a
            debugger must not already be connected, and the script engine must not already have
            waited for a debugger connection.
             | 
See Also