diff options
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/Rows/WixBundleExePackageRow.cs')
| -rw-r--r-- | src/WixToolset.Data/WindowsInstaller/Rows/WixBundleExePackageRow.cs | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/Rows/WixBundleExePackageRow.cs b/src/WixToolset.Data/WindowsInstaller/Rows/WixBundleExePackageRow.cs deleted file mode 100644 index 241c1f7f..00000000 --- a/src/WixToolset.Data/WindowsInstaller/Rows/WixBundleExePackageRow.cs +++ /dev/null | |||
| @@ -1,104 +0,0 @@ | |||
| 1 | // 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. | ||
| 2 | |||
| 3 | namespace WixToolset.Data.WindowsInstaller.Rows | ||
| 4 | { | ||
| 5 | using System; | ||
| 6 | using WixToolset.Data.Tuples; | ||
| 7 | |||
| 8 | /// <summary> | ||
| 9 | /// Specialization of a row for the WixBundleExePackage table. | ||
| 10 | /// </summary> | ||
| 11 | public sealed class WixBundleExePackageRow : Row | ||
| 12 | { | ||
| 13 | /// <summary> | ||
| 14 | /// Creates a WixBundleExePackage row that does not belong to a table. | ||
| 15 | /// </summary> | ||
| 16 | /// <param name="sourceLineNumbers">Original source lines for this row.</param> | ||
| 17 | /// <param name="tableDef">TableDefinition this row belongs to and should get its column definitions from.</param> | ||
| 18 | public WixBundleExePackageRow(SourceLineNumber sourceLineNumbers, TableDefinition tableDef) : | ||
| 19 | base(sourceLineNumbers, tableDef) | ||
| 20 | { | ||
| 21 | } | ||
| 22 | |||
| 23 | /// <summary> | ||
| 24 | /// Creates a WixBundleExePackageRow row that belongs to a table. | ||
| 25 | /// </summary> | ||
| 26 | /// <param name="sourceLineNumbers">Original source lines for this row.</param> | ||
| 27 | /// <param name="table">Table this row belongs to and should get its column definitions from.</param> | ||
| 28 | public WixBundleExePackageRow(SourceLineNumber sourceLineNumbers, Table table) : | ||
| 29 | base(sourceLineNumbers, table) | ||
| 30 | { | ||
| 31 | } | ||
| 32 | |||
| 33 | /// <summary> | ||
| 34 | /// Gets or sets the foreign key identifier to the ChainPackage row. | ||
| 35 | /// </summary> | ||
| 36 | public string ChainPackageId | ||
| 37 | { | ||
| 38 | get { return (string)this.Fields[0].Data; } | ||
| 39 | set { this.Fields[0].Data = value; } | ||
| 40 | } | ||
| 41 | |||
| 42 | /// <summary> | ||
| 43 | /// Gets or sets the raw Exe attributes of a patch. | ||
| 44 | /// </summary> | ||
| 45 | public WixBundleExePackageAttributes Attributes | ||
| 46 | { | ||
| 47 | get { return (WixBundleExePackageAttributes)this.Fields[1].Data; } | ||
| 48 | set { this.Fields[1].Data = value; } | ||
| 49 | } | ||
| 50 | |||
| 51 | /// <summary> | ||
| 52 | /// Gets or sets the protcol for the executable package. | ||
| 53 | /// </summary> | ||
| 54 | public string DetectCondition | ||
| 55 | { | ||
| 56 | get { return (string)this.Fields[2].Data; } | ||
| 57 | set { this.Fields[2].Data = value; } | ||
| 58 | } | ||
| 59 | |||
| 60 | /// <summary> | ||
| 61 | /// Gets or sets the install command for the executable package. | ||
| 62 | /// </summary> | ||
| 63 | public string InstallCommand | ||
| 64 | { | ||
| 65 | get { return (string)this.Fields[3].Data; } | ||
| 66 | set { this.Fields[3].Data = value; } | ||
| 67 | } | ||
| 68 | |||
| 69 | /// <summary> | ||
| 70 | /// Gets or sets the repair command for the executable package. | ||
| 71 | /// </summary> | ||
| 72 | public string RepairCommand | ||
| 73 | { | ||
| 74 | get { return (string)this.Fields[4].Data; } | ||
| 75 | set { this.Fields[4].Data = value; } | ||
| 76 | } | ||
| 77 | |||
| 78 | /// <summary> | ||
| 79 | /// Gets or sets the uninstall command for the executable package. | ||
| 80 | /// </summary> | ||
| 81 | public string UninstallCommand | ||
| 82 | { | ||
| 83 | get { return (string)this.Fields[5].Data; } | ||
| 84 | set { this.Fields[5].Data = value; } | ||
| 85 | } | ||
| 86 | |||
| 87 | /// <summary> | ||
| 88 | /// Gets or sets the protcol for the executable package. | ||
| 89 | /// </summary> | ||
| 90 | public string ExeProtocol | ||
| 91 | { | ||
| 92 | get { return (string)this.Fields[6].Data; } | ||
| 93 | set { this.Fields[6].Data = value; } | ||
| 94 | } | ||
| 95 | |||
| 96 | /// <summary> | ||
| 97 | /// Gets whether the executable package is repairable. | ||
| 98 | /// </summary> | ||
| 99 | public bool Repairable | ||
| 100 | { | ||
| 101 | get { return !String.IsNullOrEmpty(this.RepairCommand); } | ||
| 102 | } | ||
| 103 | } | ||
| 104 | } | ||
