[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/bobgmail/ClearScript/master/ClearScript/DocumentFlags.cs [Back]  [Original]

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

using System;

namespace Microsoft.ClearScript
{
    /// 
    /// Defines document attributes.
    /// 
    [Flags]
    public enum DocumentFlags
    {
        /// 
        /// Indicates that no attributes are present.
        /// 
        None = 0,

        /// 
        /// Indicates that the document is temporary and can be discarded after use. Only Windows
        /// Script engines honor this attribute.
        /// 
        IsTransient = 0x00000001,

        /// 
        /// 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.
        /// 
        AwaitDebuggerAndPause = 0x00000002
    }
}

Web Proxy Viewer  |  New URL  |  Original Page