aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/EventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/EventArgs.cs')
-rw-r--r--src/api/burn/WixToolset.Mba.Core/EventArgs.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/EventArgs.cs b/src/api/burn/WixToolset.Mba.Core/EventArgs.cs
index 55c9e74c..65169b25 100644
--- a/src/api/burn/WixToolset.Mba.Core/EventArgs.cs
+++ b/src/api/burn/WixToolset.Mba.Core/EventArgs.cs
@@ -1613,11 +1613,12 @@ namespace WixToolset.Mba.Core
1613 public class ExecuteFilesInUseEventArgs : ResultEventArgs 1613 public class ExecuteFilesInUseEventArgs : ResultEventArgs
1614 { 1614 {
1615 /// <summary /> 1615 /// <summary />
1616 public ExecuteFilesInUseEventArgs(string packageId, string[] files, Result recommendation, Result result) 1616 public ExecuteFilesInUseEventArgs(string packageId, string[] files, Result recommendation, FilesInUseType source, Result result)
1617 : base(recommendation, result) 1617 : base(recommendation, result)
1618 { 1618 {
1619 this.PackageId = packageId; 1619 this.PackageId = packageId;
1620 this.Files = new ReadOnlyCollection<string>(files ?? new string[] { }); 1620 this.Files = new ReadOnlyCollection<string>(files ?? new string[] { });
1621 this.Source = source;
1621 } 1622 }
1622 1623
1623 /// <summary> 1624 /// <summary>
@@ -1629,6 +1630,11 @@ namespace WixToolset.Mba.Core
1629 /// Gets the list of files in use. 1630 /// Gets the list of files in use.
1630 /// </summary> 1631 /// </summary>
1631 public IList<string> Files { get; private set; } 1632 public IList<string> Files { get; private set; }
1633
1634 /// <summary>
1635 /// Gets the source of the message.
1636 /// </summary>
1637 public FilesInUseType Source { get; private set; }
1632 } 1638 }
1633 1639
1634 /// <summary> 1640 /// <summary>