/// <summary>
 /// Adds a backlink to the collection.
 /// </summary>
 /// <param name="backlink">Backlink to add to the collection.</param>
 public void Add(FeatureBacklink backlink)
 {
     this.collection.Add(backlink);
 }
 /// <summary>
 /// Instantiate a new WixPreprocessorException.
 /// </summary>
 /// <param name="sourceLineNumbers">Source line number trace to where the exception occured.</param>
 /// <param name="blink">FeatureBacklink that is missing a feature to link with.</param>
 public WixMissingFeatureException(SourceLineNumberCollection sourceLineNumbers, FeatureBacklink blink)
     : base(sourceLineNumbers, WixExceptionType.MissingFeature)
 {
     this.blink = blink;
 }
Example #3
0
 /// <summary>
 /// Instantiate a new WixPreprocessorException.
 /// </summary>
 /// <param name="sourceLineNumbers">Source line number trace to where the exception occured.</param>
 /// <param name="blink">FeatureBacklink that is missing a feature to link with.</param>
 public WixMissingFeatureException(SourceLineNumberCollection sourceLineNumbers, FeatureBacklink blink) :
     base(sourceLineNumbers, WixExceptionType.MissingFeature)
 {
     this.blink = blink;
 }
Example #4
0
 /// <summary>
 /// Adds a feature backlink to the active section.
 /// </summary>
 /// <param name="featureBacklink">Backlink to feature to add.</param>
 internal void AddFeatureBacklink(FeatureBacklink featureBacklink)
 {
     this.activeSection.FeatureBacklinks.Add(featureBacklink);
 }
 /// <summary>
 /// Adds a backlink to the collection.
 /// </summary>
 /// <param name="backlink">Backlink to add to the collection.</param>
 public void Add(FeatureBacklink backlink)
 {
     this.collection.Add(backlink);
 }
Example #6
0
 /// <summary>
 /// Adds a feature backlink to the active section.
 /// </summary>
 /// <param name="featureBacklink">Backlink to feature to add.</param>
 internal void AddFeatureBacklink(FeatureBacklink featureBacklink)
 {
     this.activeSection.FeatureBacklinks.Add(featureBacklink);
 }