diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2023-01-19 00:18:26 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2023-01-19 01:52:41 -0600 |
| commit | a46ef0eebafea0e5b38c0c6e960be778c2dbb852 (patch) | |
| tree | 8ae23b506375da6ff91e5f0743006a7ccd51ecc0 /src/api/burn/WixToolset.Mba.Core/BootstrapperApplication.cs | |
| parent | 7a0aa56131ba7fa3b63788908c164d0f8118e3fc (diff) | |
| download | wix-a46ef0eebafea0e5b38c0c6e960be778c2dbb852.tar.gz wix-a46ef0eebafea0e5b38c0c6e960be778c2dbb852.tar.bz2 wix-a46ef0eebafea0e5b38c0c6e960be778c2dbb852.zip | |
Finish the XML documentation in WixToolset.Mba.Core.
4623
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/BootstrapperApplication.cs')
| -rw-r--r-- | src/api/burn/WixToolset.Mba.Core/BootstrapperApplication.cs | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/BootstrapperApplication.cs b/src/api/burn/WixToolset.Mba.Core/BootstrapperApplication.cs index b23cb3b2..a0ec6ab9 100644 --- a/src/api/burn/WixToolset.Mba.Core/BootstrapperApplication.cs +++ b/src/api/burn/WixToolset.Mba.Core/BootstrapperApplication.cs | |||
| @@ -798,7 +798,7 @@ namespace WixToolset.Mba.Core | |||
| 798 | /// <summary> | 798 | /// <summary> |
| 799 | /// Called by the engine, raises the <see cref="CacheBegin"/> event. | 799 | /// Called by the engine, raises the <see cref="CacheBegin"/> event. |
| 800 | /// </summary> | 800 | /// </summary> |
| 801 | /// <param name="args"></param> | 801 | /// <param name="args">Additional arguments for this event.</param> |
| 802 | protected virtual void OnCacheBegin(CacheBeginEventArgs args) | 802 | protected virtual void OnCacheBegin(CacheBeginEventArgs args) |
| 803 | { | 803 | { |
| 804 | EventHandler<CacheBeginEventArgs> handler = this.CacheBegin; | 804 | EventHandler<CacheBeginEventArgs> handler = this.CacheBegin; |
| @@ -811,7 +811,7 @@ namespace WixToolset.Mba.Core | |||
| 811 | /// <summary> | 811 | /// <summary> |
| 812 | /// Called by the engine, raises the <see cref="CachePackageBegin"/> event. | 812 | /// Called by the engine, raises the <see cref="CachePackageBegin"/> event. |
| 813 | /// </summary> | 813 | /// </summary> |
| 814 | /// <param name="args"></param> | 814 | /// <param name="args">Additional arguments for this event.</param> |
| 815 | protected virtual void OnCachePackageBegin(CachePackageBeginEventArgs args) | 815 | protected virtual void OnCachePackageBegin(CachePackageBeginEventArgs args) |
| 816 | { | 816 | { |
| 817 | EventHandler<CachePackageBeginEventArgs> handler = this.CachePackageBegin; | 817 | EventHandler<CachePackageBeginEventArgs> handler = this.CachePackageBegin; |
| @@ -824,7 +824,7 @@ namespace WixToolset.Mba.Core | |||
| 824 | /// <summary> | 824 | /// <summary> |
| 825 | /// Called by the engine, raises the <see cref="CacheAcquireBegin"/> event. | 825 | /// Called by the engine, raises the <see cref="CacheAcquireBegin"/> event. |
| 826 | /// </summary> | 826 | /// </summary> |
| 827 | /// <param name="args"></param> | 827 | /// <param name="args">Additional arguments for this event.</param> |
| 828 | protected virtual void OnCacheAcquireBegin(CacheAcquireBeginEventArgs args) | 828 | protected virtual void OnCacheAcquireBegin(CacheAcquireBeginEventArgs args) |
| 829 | { | 829 | { |
| 830 | EventHandler<CacheAcquireBeginEventArgs> handler = this.CacheAcquireBegin; | 830 | EventHandler<CacheAcquireBeginEventArgs> handler = this.CacheAcquireBegin; |
| @@ -837,7 +837,7 @@ namespace WixToolset.Mba.Core | |||
| 837 | /// <summary> | 837 | /// <summary> |
| 838 | /// Called by the engine, raises the <see cref="CacheAcquireProgress"/> event. | 838 | /// Called by the engine, raises the <see cref="CacheAcquireProgress"/> event. |
| 839 | /// </summary> | 839 | /// </summary> |
| 840 | /// <param name="args"></param> | 840 | /// <param name="args">Additional arguments for this event.</param> |
| 841 | protected virtual void OnCacheAcquireProgress(CacheAcquireProgressEventArgs args) | 841 | protected virtual void OnCacheAcquireProgress(CacheAcquireProgressEventArgs args) |
| 842 | { | 842 | { |
| 843 | EventHandler<CacheAcquireProgressEventArgs> handler = this.CacheAcquireProgress; | 843 | EventHandler<CacheAcquireProgressEventArgs> handler = this.CacheAcquireProgress; |
| @@ -863,7 +863,7 @@ namespace WixToolset.Mba.Core | |||
| 863 | /// <summary> | 863 | /// <summary> |
| 864 | /// Called by the engine, raises the <see cref="CacheAcquireComplete"/> event. | 864 | /// Called by the engine, raises the <see cref="CacheAcquireComplete"/> event. |
| 865 | /// </summary> | 865 | /// </summary> |
| 866 | /// <param name="args"></param> | 866 | /// <param name="args">Additional arguments for this event.</param> |
| 867 | protected virtual void OnCacheAcquireComplete(CacheAcquireCompleteEventArgs args) | 867 | protected virtual void OnCacheAcquireComplete(CacheAcquireCompleteEventArgs args) |
| 868 | { | 868 | { |
| 869 | EventHandler<CacheAcquireCompleteEventArgs> handler = this.CacheAcquireComplete; | 869 | EventHandler<CacheAcquireCompleteEventArgs> handler = this.CacheAcquireComplete; |
| @@ -876,7 +876,7 @@ namespace WixToolset.Mba.Core | |||
| 876 | /// <summary> | 876 | /// <summary> |
| 877 | /// Called by the engine, raises the <see cref="CacheVerifyBegin"/> event. | 877 | /// Called by the engine, raises the <see cref="CacheVerifyBegin"/> event. |
| 878 | /// </summary> | 878 | /// </summary> |
| 879 | /// <param name="args"></param> | 879 | /// <param name="args">Additional arguments for this event.</param> |
| 880 | protected virtual void OnCacheVerifyBegin(CacheVerifyBeginEventArgs args) | 880 | protected virtual void OnCacheVerifyBegin(CacheVerifyBeginEventArgs args) |
| 881 | { | 881 | { |
| 882 | EventHandler<CacheVerifyBeginEventArgs> handler = this.CacheVerifyBegin; | 882 | EventHandler<CacheVerifyBeginEventArgs> handler = this.CacheVerifyBegin; |
| @@ -889,7 +889,7 @@ namespace WixToolset.Mba.Core | |||
| 889 | /// <summary> | 889 | /// <summary> |
| 890 | /// Called by the engine, raises the <see cref="CacheVerifyProgress"/> event. | 890 | /// Called by the engine, raises the <see cref="CacheVerifyProgress"/> event. |
| 891 | /// </summary> | 891 | /// </summary> |
| 892 | /// <param name="args"></param> | 892 | /// <param name="args">Additional arguments for this event.</param> |
| 893 | protected virtual void OnCacheVerifyProgress(CacheVerifyProgressEventArgs args) | 893 | protected virtual void OnCacheVerifyProgress(CacheVerifyProgressEventArgs args) |
| 894 | { | 894 | { |
| 895 | EventHandler<CacheVerifyProgressEventArgs> handler = this.CacheVerifyProgress; | 895 | EventHandler<CacheVerifyProgressEventArgs> handler = this.CacheVerifyProgress; |
| @@ -902,7 +902,7 @@ namespace WixToolset.Mba.Core | |||
| 902 | /// <summary> | 902 | /// <summary> |
| 903 | /// Called by the engine, raises the <see cref="CacheVerifyComplete"/> event. | 903 | /// Called by the engine, raises the <see cref="CacheVerifyComplete"/> event. |
| 904 | /// </summary> | 904 | /// </summary> |
| 905 | /// <param name="args"></param> | 905 | /// <param name="args">Additional arguments for this event.</param> |
| 906 | protected virtual void OnCacheVerifyComplete(CacheVerifyCompleteEventArgs args) | 906 | protected virtual void OnCacheVerifyComplete(CacheVerifyCompleteEventArgs args) |
| 907 | { | 907 | { |
| 908 | EventHandler<CacheVerifyCompleteEventArgs> handler = this.CacheVerifyComplete; | 908 | EventHandler<CacheVerifyCompleteEventArgs> handler = this.CacheVerifyComplete; |
| @@ -915,7 +915,7 @@ namespace WixToolset.Mba.Core | |||
| 915 | /// <summary> | 915 | /// <summary> |
| 916 | /// Called by the engine, raises the <see cref="CachePackageComplete"/> event. | 916 | /// Called by the engine, raises the <see cref="CachePackageComplete"/> event. |
| 917 | /// </summary> | 917 | /// </summary> |
| 918 | /// <param name="args"></param> | 918 | /// <param name="args">Additional arguments for this event.</param> |
| 919 | protected virtual void OnCachePackageComplete(CachePackageCompleteEventArgs args) | 919 | protected virtual void OnCachePackageComplete(CachePackageCompleteEventArgs args) |
| 920 | { | 920 | { |
| 921 | EventHandler<CachePackageCompleteEventArgs> handler = this.CachePackageComplete; | 921 | EventHandler<CachePackageCompleteEventArgs> handler = this.CachePackageComplete; |
| @@ -1227,6 +1227,7 @@ namespace WixToolset.Mba.Core | |||
| 1227 | /// <summary> | 1227 | /// <summary> |
| 1228 | /// Called by the engine, raises the <see cref="PlanForwardCompatibleBundle"/> event. | 1228 | /// Called by the engine, raises the <see cref="PlanForwardCompatibleBundle"/> event. |
| 1229 | /// </summary> | 1229 | /// </summary> |
| 1230 | /// <param name="args">Additional arguments for this event.</param> | ||
| 1230 | protected virtual void OnPlanForwardCompatibleBundle(PlanForwardCompatibleBundleEventArgs args) | 1231 | protected virtual void OnPlanForwardCompatibleBundle(PlanForwardCompatibleBundleEventArgs args) |
| 1231 | { | 1232 | { |
| 1232 | EventHandler<PlanForwardCompatibleBundleEventArgs> handler = this.PlanForwardCompatibleBundle; | 1233 | EventHandler<PlanForwardCompatibleBundleEventArgs> handler = this.PlanForwardCompatibleBundle; |
| @@ -1239,7 +1240,7 @@ namespace WixToolset.Mba.Core | |||
| 1239 | /// <summary> | 1240 | /// <summary> |
| 1240 | /// Called by the engine, raises the <see cref="CacheContainerOrPayloadVerifyBegin"/> event. | 1241 | /// Called by the engine, raises the <see cref="CacheContainerOrPayloadVerifyBegin"/> event. |
| 1241 | /// </summary> | 1242 | /// </summary> |
| 1242 | /// <param name="args"></param> | 1243 | /// <param name="args">Additional arguments for this event.</param> |
| 1243 | protected virtual void OnCacheContainerOrPayloadVerifyBegin(CacheContainerOrPayloadVerifyBeginEventArgs args) | 1244 | protected virtual void OnCacheContainerOrPayloadVerifyBegin(CacheContainerOrPayloadVerifyBeginEventArgs args) |
| 1244 | { | 1245 | { |
| 1245 | EventHandler<CacheContainerOrPayloadVerifyBeginEventArgs> handler = this.CacheContainerOrPayloadVerifyBegin; | 1246 | EventHandler<CacheContainerOrPayloadVerifyBeginEventArgs> handler = this.CacheContainerOrPayloadVerifyBegin; |
| @@ -1252,7 +1253,7 @@ namespace WixToolset.Mba.Core | |||
| 1252 | /// <summary> | 1253 | /// <summary> |
| 1253 | /// Called by the engine, raises the <see cref="CacheContainerOrPayloadVerifyProgress"/> event. | 1254 | /// Called by the engine, raises the <see cref="CacheContainerOrPayloadVerifyProgress"/> event. |
| 1254 | /// </summary> | 1255 | /// </summary> |
| 1255 | /// <param name="args"></param> | 1256 | /// <param name="args">Additional arguments for this event.</param> |
| 1256 | protected virtual void OnCacheContainerOrPayloadVerifyProgress(CacheContainerOrPayloadVerifyProgressEventArgs args) | 1257 | protected virtual void OnCacheContainerOrPayloadVerifyProgress(CacheContainerOrPayloadVerifyProgressEventArgs args) |
| 1257 | { | 1258 | { |
| 1258 | EventHandler<CacheContainerOrPayloadVerifyProgressEventArgs> handler = this.CacheContainerOrPayloadVerifyProgress; | 1259 | EventHandler<CacheContainerOrPayloadVerifyProgressEventArgs> handler = this.CacheContainerOrPayloadVerifyProgress; |
| @@ -1265,7 +1266,7 @@ namespace WixToolset.Mba.Core | |||
| 1265 | /// <summary> | 1266 | /// <summary> |
| 1266 | /// Called by the engine, raises the <see cref="CacheContainerOrPayloadVerifyComplete"/> event. | 1267 | /// Called by the engine, raises the <see cref="CacheContainerOrPayloadVerifyComplete"/> event. |
| 1267 | /// </summary> | 1268 | /// </summary> |
| 1268 | /// <param name="args"></param> | 1269 | /// <param name="args">Additional arguments for this event.</param> |
| 1269 | protected virtual void OnCacheContainerOrPayloadVerifyComplete(CacheContainerOrPayloadVerifyCompleteEventArgs args) | 1270 | protected virtual void OnCacheContainerOrPayloadVerifyComplete(CacheContainerOrPayloadVerifyCompleteEventArgs args) |
| 1270 | { | 1271 | { |
| 1271 | EventHandler<CacheContainerOrPayloadVerifyCompleteEventArgs> handler = this.CacheContainerOrPayloadVerifyComplete; | 1272 | EventHandler<CacheContainerOrPayloadVerifyCompleteEventArgs> handler = this.CacheContainerOrPayloadVerifyComplete; |
| @@ -1278,7 +1279,7 @@ namespace WixToolset.Mba.Core | |||
| 1278 | /// <summary> | 1279 | /// <summary> |
| 1279 | /// Called by the engine, raises the <see cref="CachePayloadExtractBegin"/> event. | 1280 | /// Called by the engine, raises the <see cref="CachePayloadExtractBegin"/> event. |
| 1280 | /// </summary> | 1281 | /// </summary> |
| 1281 | /// <param name="args"></param> | 1282 | /// <param name="args">Additional arguments for this event.</param> |
| 1282 | protected virtual void OnCachePayloadExtractBegin(CachePayloadExtractBeginEventArgs args) | 1283 | protected virtual void OnCachePayloadExtractBegin(CachePayloadExtractBeginEventArgs args) |
| 1283 | { | 1284 | { |
| 1284 | EventHandler<CachePayloadExtractBeginEventArgs> handler = this.CachePayloadExtractBegin; | 1285 | EventHandler<CachePayloadExtractBeginEventArgs> handler = this.CachePayloadExtractBegin; |
| @@ -1291,7 +1292,7 @@ namespace WixToolset.Mba.Core | |||
| 1291 | /// <summary> | 1292 | /// <summary> |
| 1292 | /// Called by the engine, raises the <see cref="CachePayloadExtractProgress"/> event. | 1293 | /// Called by the engine, raises the <see cref="CachePayloadExtractProgress"/> event. |
| 1293 | /// </summary> | 1294 | /// </summary> |
| 1294 | /// <param name="args"></param> | 1295 | /// <param name="args">Additional arguments for this event.</param> |
| 1295 | protected virtual void OnCachePayloadExtractProgress(CachePayloadExtractProgressEventArgs args) | 1296 | protected virtual void OnCachePayloadExtractProgress(CachePayloadExtractProgressEventArgs args) |
| 1296 | { | 1297 | { |
| 1297 | EventHandler<CachePayloadExtractProgressEventArgs> handler = this.CachePayloadExtractProgress; | 1298 | EventHandler<CachePayloadExtractProgressEventArgs> handler = this.CachePayloadExtractProgress; |
| @@ -1304,7 +1305,7 @@ namespace WixToolset.Mba.Core | |||
| 1304 | /// <summary> | 1305 | /// <summary> |
| 1305 | /// Called by the engine, raises the <see cref="CachePayloadExtractComplete"/> event. | 1306 | /// Called by the engine, raises the <see cref="CachePayloadExtractComplete"/> event. |
| 1306 | /// </summary> | 1307 | /// </summary> |
| 1307 | /// <param name="args"></param> | 1308 | /// <param name="args">Additional arguments for this event.</param> |
| 1308 | protected virtual void OnCachePayloadExtractComplete(CachePayloadExtractCompleteEventArgs args) | 1309 | protected virtual void OnCachePayloadExtractComplete(CachePayloadExtractCompleteEventArgs args) |
| 1309 | { | 1310 | { |
| 1310 | EventHandler<CachePayloadExtractCompleteEventArgs> handler = this.CachePayloadExtractComplete; | 1311 | EventHandler<CachePayloadExtractCompleteEventArgs> handler = this.CachePayloadExtractComplete; |
| @@ -1317,7 +1318,7 @@ namespace WixToolset.Mba.Core | |||
| 1317 | /// <summary> | 1318 | /// <summary> |
| 1318 | /// Called by the engine, raises the <see cref="SetUpdateBegin"/> event. | 1319 | /// Called by the engine, raises the <see cref="SetUpdateBegin"/> event. |
| 1319 | /// </summary> | 1320 | /// </summary> |
| 1320 | /// <param name="args"></param> | 1321 | /// <param name="args">Additional arguments for this event.</param> |
| 1321 | protected virtual void OnSetUpdateBegin(SetUpdateBeginEventArgs args) | 1322 | protected virtual void OnSetUpdateBegin(SetUpdateBeginEventArgs args) |
| 1322 | { | 1323 | { |
| 1323 | EventHandler<SetUpdateBeginEventArgs> handler = this.SetUpdateBegin; | 1324 | EventHandler<SetUpdateBeginEventArgs> handler = this.SetUpdateBegin; |
| @@ -1330,7 +1331,7 @@ namespace WixToolset.Mba.Core | |||
| 1330 | /// <summary> | 1331 | /// <summary> |
| 1331 | /// Called by the engine, raises the <see cref="SetUpdateComplete"/> event. | 1332 | /// Called by the engine, raises the <see cref="SetUpdateComplete"/> event. |
| 1332 | /// </summary> | 1333 | /// </summary> |
| 1333 | /// <param name="args"></param> | 1334 | /// <param name="args">Additional arguments for this event.</param> |
| 1334 | protected virtual void OnSetUpdateComplete(SetUpdateCompleteEventArgs args) | 1335 | protected virtual void OnSetUpdateComplete(SetUpdateCompleteEventArgs args) |
| 1335 | { | 1336 | { |
| 1336 | EventHandler<SetUpdateCompleteEventArgs> handler = this.SetUpdateComplete; | 1337 | EventHandler<SetUpdateCompleteEventArgs> handler = this.SetUpdateComplete; |
| @@ -1382,6 +1383,7 @@ namespace WixToolset.Mba.Core | |||
| 1382 | /// <summary> | 1383 | /// <summary> |
| 1383 | /// Called by the engine, raises the <see cref="CachePackageNonVitalValidationFailure"/> event. | 1384 | /// Called by the engine, raises the <see cref="CachePackageNonVitalValidationFailure"/> event. |
| 1384 | /// </summary> | 1385 | /// </summary> |
| 1386 | /// <param name="args">Additional arguments for this event.</param> | ||
| 1385 | protected virtual void OnCachePackageNonVitalValidationFailure(CachePackageNonVitalValidationFailureEventArgs args) | 1387 | protected virtual void OnCachePackageNonVitalValidationFailure(CachePackageNonVitalValidationFailureEventArgs args) |
| 1386 | { | 1388 | { |
| 1387 | EventHandler<CachePackageNonVitalValidationFailureEventArgs> handler = this.CachePackageNonVitalValidationFailure; | 1389 | EventHandler<CachePackageNonVitalValidationFailureEventArgs> handler = this.CachePackageNonVitalValidationFailure; |
