// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. namespace WixToolset.Data { /// /// Yes, No, Always xml simple type. /// public enum YesNoAlwaysType { /// Not a valid yes, no or always value. IllegalValue = -2, /// Value not set; equivalent to null for reference types. NotSet = -1, /// The no value. No, /// The yes value. Yes, /// The always value. Always, } }