blob: e01506852ee7c46e181f2104d0523fa2424efa2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// 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;
/// <summary>
/// Bundle update info for binding Bundles.
/// </summary>
public class WixBundleUpdateRow : Row
{
/// <summary>
/// Creates a WixBundleUpdateRow row that does not belong to a table.
/// </summary>
/// <param name="sourceLineNumbers">Original source lines for this row.</param>
/// <param name="tableDef">TableDefinition this WixBundleUpdateRow row belongs to and should get its column definitions from.</param>
public WixBundleUpdateRow(SourceLineNumber sourceLineNumbers, TableDefinition tableDef) :
base(sourceLineNumbers, tableDef)
{
}
/// <summary>
/// Creates a WixBundleUpdateRow row that belongs to a table.
/// </summary>
/// <param name="sourceLineNumbers">Original source lines for this row.</param>
/// <param name="table">Table this WixBundleUpdateRow row belongs to and should get its column definitions from.</param>
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; }
}
}
}
|