Ejemplo n.º 1
0
 /// <summary>
 /// Applies a transform to this database.
 /// </summary>
 /// <param name="transformFile">Path to the transform file being applied.</param>
 /// <param name="errorConditions">Specifies the error conditions that are to be suppressed.</param>
 public void ApplyTransform(string transformFile, TransformErrorConditions errorConditions)
 {
     var error = MsiInterop.MsiDatabaseApplyTransform(this.Handle, transformFile, errorConditions);
     if (0 != error)
     {
         throw new MsiException(error);
     }
 }