diff options
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/EventArgs.cs')
-rw-r--r-- | src/api/burn/WixToolset.Mba.Core/EventArgs.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/EventArgs.cs b/src/api/burn/WixToolset.Mba.Core/EventArgs.cs index d8ec7998..c93c2885 100644 --- a/src/api/burn/WixToolset.Mba.Core/EventArgs.cs +++ b/src/api/burn/WixToolset.Mba.Core/EventArgs.cs | |||
@@ -1859,6 +1859,30 @@ namespace WixToolset.Mba.Core | |||
1859 | } | 1859 | } |
1860 | 1860 | ||
1861 | /// <summary> | 1861 | /// <summary> |
1862 | /// Event arguments for <see cref="IDefaultBootstrapperApplication.ApplyDowngrade"/> | ||
1863 | /// </summary> | ||
1864 | [Serializable] | ||
1865 | public class ApplyDowngradeEventArgs : HResultEventArgs | ||
1866 | { | ||
1867 | /// <summary /> | ||
1868 | public ApplyDowngradeEventArgs(int hrRecommendation, int hrStatus) | ||
1869 | { | ||
1870 | this.Recommendation = hrRecommendation; | ||
1871 | this.Status = hrStatus; | ||
1872 | } | ||
1873 | |||
1874 | /// <summary> | ||
1875 | /// Gets the recommended HRESULT. | ||
1876 | /// </summary> | ||
1877 | public int Recommendation { get; private set; } | ||
1878 | |||
1879 | /// <summary> | ||
1880 | /// Gets or sets the HRESULT for Apply. | ||
1881 | /// </summary> | ||
1882 | public int Status { get; set; } | ||
1883 | } | ||
1884 | |||
1885 | /// <summary> | ||
1862 | /// EventArgs for <see cref="IDefaultBootstrapperApplication.CacheAcquireResolving"/>. | 1886 | /// EventArgs for <see cref="IDefaultBootstrapperApplication.CacheAcquireResolving"/>. |
1863 | /// </summary> | 1887 | /// </summary> |
1864 | [Serializable] | 1888 | [Serializable] |