// 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.Rows { using System; /// /// Bundle update info for binding Bundles. /// public class WixBundleUpdateRow : Row { /// /// Creates a WixBundleUpdateRow row that does not belong to a table. /// /// Original source lines for this row. /// TableDefinition this WixBundleUpdateRow row belongs to and should get its column definitions from. public WixBundleUpdateRow(SourceLineNumber sourceLineNumbers, TableDefinition tableDef) : base(sourceLineNumbers, tableDef) { } /// /// Creates a WixBundleUpdateRow row that belongs to a table. /// /// Original source lines for this row. /// Table this WixBundleUpdateRow row belongs to and should get its column definitions from. public WixBundleUpdateRow(SourceLineNumber sourceLineNumbers, Table table) : base(sourceLineNumbers, table) { } public string Location { get { return (string)this.Fields[0].Data; } set { this.Fields[0].Data = value; } } } }