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, 1 insertions, 7 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/EventArgs.cs b/src/api/burn/WixToolset.Mba.Core/EventArgs.cs
index 65169b25..93831be6 100644
--- a/src/api/burn/WixToolset.Mba.Core/EventArgs.cs
+++ b/src/api/burn/WixToolset.Mba.Core/EventArgs.cs
@@ -434,7 +434,7 @@ namespace WixToolset.Mba.Core
434 public class DetectRelatedBundleEventArgs : CancellableHResultEventArgs 434 public class DetectRelatedBundleEventArgs : CancellableHResultEventArgs
435 { 435 {
436 /// <summary /> 436 /// <summary />
437 public DetectRelatedBundleEventArgs(string productCode, RelationType relationType, string bundleTag, bool perMachine, string version, RelatedOperation operation, bool missingFromCache, bool cancelRecommendation) 437 public DetectRelatedBundleEventArgs(string productCode, RelationType relationType, string bundleTag, bool perMachine, string version, bool missingFromCache, bool cancelRecommendation)
438 : base(cancelRecommendation) 438 : base(cancelRecommendation)
439 { 439 {
440 this.ProductCode = productCode; 440 this.ProductCode = productCode;
@@ -442,7 +442,6 @@ namespace WixToolset.Mba.Core
442 this.BundleTag = bundleTag; 442 this.BundleTag = bundleTag;
443 this.PerMachine = perMachine; 443 this.PerMachine = perMachine;
444 this.Version = version; 444 this.Version = version;
445 this.Operation = operation;
446 this.MissingFromCache = missingFromCache; 445 this.MissingFromCache = missingFromCache;
447 } 446 }
448 447
@@ -472,11 +471,6 @@ namespace WixToolset.Mba.Core
472 public string Version { get; private set; } 471 public string Version { get; private set; }
473 472
474 /// <summary> 473 /// <summary>
475 /// Gets the operation that will be taken on the detected bundle.
476 /// </summary>
477 public RelatedOperation Operation { get; private set; }
478
479 /// <summary>
480 /// Whether the related bundle is missing from the package cache. 474 /// Whether the related bundle is missing from the package cache.
481 /// </summary> 475 /// </summary>
482 public bool MissingFromCache { get; set; } 476 public bool MissingFromCache { get; set; }