Example #1
0
 /// <summary>
 /// Gets the value of a summary information stream property
 /// </summary>
 /// <param name="msi">The MSI to get the property from</param>
 /// <param name="index">The  summary information stream property enum ID(MsiSummaryInformationPropertyIndex) of the property to get</param>
 /// <returns>Summary information stream property</returns>
 /// <remarks>
 /// This method reflects on wix.dll to use some of its internal methods for getting Summary Information data
 /// </remarks>
 public static string GetMsiSummaryInformationProperty(string msi, MsiSummaryInformationProperty index)
 {
     return(GetSummaryInformationProperty(msi, (int)index));
 }
Example #2
0
 /// <summary>
 /// Gets the value of a summary information stream property
 /// </summary>
 /// <param name="msi">The MSI to get the property from</param>
 /// <param name="index">The  summary information stream property enum ID(MsiSummaryInformationPropertyIndex) of the property to get</param>
 /// <returns>Summary information stream property</returns>
 /// <remarks>
 /// This method reflects on wix.dll to use some of its internal methods for getting Summary Information data
 /// </remarks>
 public static string GetMsiSummaryInformationProperty(string msi, MsiSummaryInformationProperty index)
 {
     return GetSummaryInformationProperty (msi ,(int)index );
 }