// 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 } }