This repository has been archived by the owner on Mar 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BootstrapperCore.xml
2813 lines (2811 loc) · 161 KB
/
BootstrapperCore.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>BootstrapperCore</name>
</assembly>
<members>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication">
<summary>
The default bootstrapper application.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.#ctor">
<summary>
Creates a new instance of the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication"/> class.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Startup">
<summary>
Fired when the engine is starting up the bootstrapper application.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Shutdown">
<summary>
Fired when the engine is shutting down the bootstrapper application.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.SystemShutdown">
<summary>
Fired when the system is shutting down or user is logging off.
</summary>
<remarks>
<para>To prevent shutting down or logging off, set <see cref="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ResultEventArgs.Result"/> to
<see cref="F:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Result.Cancel"/>; otherwise, set it to <see cref="F:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Result.Ok"/>.</para>
<para>By default setup will prevent shutting down or logging off between
<see cref="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ApplyBegin"/> and <see cref="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ApplyComplete"/>.
Derivatives can change this behavior by overriding <see cref="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnSystemShutdown(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SystemShutdownEventArgs)"/>
or handling <see cref="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.SystemShutdown"/>.</para>
<para>If <see cref="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SystemShutdownEventArgs.Reasons"/> contains <see cref="F:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.EndSessionReasons.Critical"/>
the bootstrapper cannot prevent the shutdown and only has a few seconds to save state or perform any other
critical operations before being closed by the operating system.</para>
<para>This event may be fired on a different thread.</para>
</remarks>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectBegin">
<summary>
Fired when the overall detection phase has begun.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectForwardCompatibleBundle">
<summary>
Fired when a forward compatible bundle is detected.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectUpdateBegin">
<summary>
Fired when the update detection phase has begun.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectUpdate">
<summary>
Fired when the update detection has found a potential update candidate.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectUpdateComplete">
<summary>
Fired when the update detection phase has completed.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectPriorBundle">
<summary>
Fired when the detection for a prior bundle has begun.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectRelatedBundle">
<summary>
Fired when a related bundle has been detected for a bundle.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectPackageBegin">
<summary>
Fired when the detection for a specific package has begun.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectCompatiblePackage">
<summary>
Fired when a package was not detected but a package using the same provider key was.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectRelatedMsiPackage">
<summary>
Fired when a related MSI package has been detected for a package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectTargetMsiPackage">
<summary>
Fired when an MSP package detects a target MSI has been detected.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectMsiFeature">
<summary>
Fired when a feature in an MSI package has been detected.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectPackageComplete">
<summary>
Fired when the detection for a specific package has completed.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.DetectComplete">
<summary>
Fired when the detection phase has completed.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.PlanBegin">
<summary>
Fired when the engine has begun planning the installation.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.PlanRelatedBundle">
<summary>
Fired when the engine has begun planning for a related bundle.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.PlanPackageBegin">
<summary>
Fired when the engine has begun planning the installation of a specific package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.PlanCompatiblePackage">
<summary>
Fired when the engine plans a new, compatible package using the same provider key.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.PlanTargetMsiPackage">
<summary>
Fired when the engine is about to plan the target MSI of a MSP package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.PlanMsiFeature">
<summary>
Fired when the engine is about to plan a feature in an MSI package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.PlanPackageComplete">
<summary>
Fired when the engine has completed planning the installation of a specific package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.PlanComplete">
<summary>
Fired when the engine has completed planning the installation.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ApplyBegin">
<summary>
Fired when the engine has begun installing the bundle.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ApplyPhaseCount">
<summary>
DEPRECATED: This event will be merged with ApplyBegin in wix4.
Fired right after ApplyBegin, providing the number of phases that the engine will go through in apply.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Elevate">
<summary>
Fired when the engine is about to start the elevated process.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.RegisterBegin">
<summary>
Fired when the engine has begun registering the location and visibility of the bundle.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.RegisterComplete">
<summary>
Fired when the engine has completed registering the location and visibility of the bundle.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.UnregisterBegin">
<summary>
Fired when the engine has begun removing the registration for the location and visibility of the bundle.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.UnregisterComplete">
<summary>
Fired when the engine has completed removing the registration for the location and visibility of the bundle.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CacheBegin">
<summary>
Fired when the engine has begun caching the installation sources.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CachePackageBegin">
<summary>
Fired when the engine has begun caching a specific package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CacheAcquireBegin">
<summary>
Fired when the engine has begun acquiring the installation sources.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CacheAcquireProgress">
<summary>
Fired when the engine has progress acquiring the installation sources.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ResolveSource">
<summary>
Fired by the engine to allow the user experience to change the source
using <see cref="M:Engine.SetLocalSource"/> or <see cref="M:Engine.SetDownloadSource"/>.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CacheAcquireComplete">
<summary>
Fired when the engine has completed the acquisition of the installation sources.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CacheVerifyBegin">
<summary>
Fired when the engine begins the verification of the acquired installation sources.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CacheVerifyComplete">
<summary>
Fired when the engine complete the verification of the acquired installation sources.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CachePackageComplete">
<summary>
Fired when the engine has completed caching a specific package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.CacheComplete">
<summary>
Fired after the engine has cached the installation sources.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ExecuteBegin">
<summary>
Fired when the engine has begun installing packages.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ExecutePackageBegin">
<summary>
Fired when the engine has begun installing a specific package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ExecutePatchTarget">
<summary>
Fired when the engine executes one or more patches targeting a product.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Error">
<summary>
Fired when the engine has encountered an error.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Progress">
<summary>
Fired when the engine has changed progress for the bundle installation.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ExecuteMsiMessage">
<summary>
Fired when Windows Installer sends an installation message.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ExecuteFilesInUse">
<summary>
Fired when Windows Installer sends a files in use installation message.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ExecutePackageComplete">
<summary>
Fired when the engine has completed installing a specific package.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ExecuteComplete">
<summary>
Fired when the engine has completed installing packages.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.RestartRequired">
<summary>
Fired by the engine to request a restart now or inform the user a manual restart is required later.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ApplyComplete">
<summary>
Fired when the engine has completed installing the bundle.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ExecuteProgress">
<summary>
Fired by the engine while executing on payload.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.LaunchApprovedExeBegin">
<summary>
Fired when the engine is about to launch the preapproved executable.
</summary>
</member>
<member name="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.LaunchApprovedExeComplete">
<summary>
Fired when the engine has completed launching the preapproved executable.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.AsyncExecution">
<summary>
Specifies whether this bootstrapper should run asynchronously. The default is true.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Command">
<summary>
Gets the <see cref="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Command"/> information for how the UX should be started.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Engine">
<summary>
Gets the <see cref="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Engine"/> for interaction with the Engine.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.Run">
<summary>
Entry point that is called when the bootstrapper application is ready to run.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnStartup(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.StartupEventArgs)">
<summary>
Called by the engine on startup of the bootstrapper application.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnShutdown(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ShutdownEventArgs)">
<summary>
Called by the engine to uninitialize the user experience.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnSystemShutdown(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SystemShutdownEventArgs)">
<summary>
Called when the system is shutting down or the user is logging off.
</summary>
<param name="args">Additional arguments for this event.</param>
<remarks>
<para>To prevent shutting down or logging off, set <see cref="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ResultEventArgs.Result"/> to
<see cref="F:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Result.Cancel"/>; otherwise, set it to <see cref="F:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Result.Ok"/>.</para>
<para>By default setup will prevent shutting down or logging off between
<see cref="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ApplyBegin"/> and <see cref="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.ApplyComplete"/>.
Derivatives can change this behavior by overriding <see cref="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnSystemShutdown(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SystemShutdownEventArgs)"/>
or handling <see cref="E:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.SystemShutdown"/>.</para>
<para>If <see cref="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SystemShutdownEventArgs.Reasons"/> contains <see cref="F:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.EndSessionReasons.Critical"/>
the bootstrapper cannot prevent the shutdown and only has a few seconds to save state or perform any other
critical operations before being closed by the operating system.</para>
<para>This method may be called on a different thread.</para>
</remarks>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectBeginEventArgs)">
<summary>
Called when the overall detection phase has begun.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectForwardCompatibleBundle(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectForwardCompatibleBundleEventArgs)">
<summary>
Called when the update detection phase has begun.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectUpdateBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectUpdateBeginEventArgs)">
<summary>
Called when the update detection phase has begun.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectUpdate(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectUpdateEventArgs)">
<summary>
Fired when the update detection has found a potential update candidate.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectUpdateComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectUpdateCompleteEventArgs)">
<summary>
Called when the update detection phase has completed.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectPriorBundle(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectPriorBundleEventArgs)">
<summary>
Called when the detection for a prior bundle has begun.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectRelatedBundle(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectRelatedBundleEventArgs)">
<summary>
Called when a related bundle has been detected for a bundle.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectPackageBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectPackageBeginEventArgs)">
<summary>
Called when the detection for a specific package has begun.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectCompatiblePackage(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectCompatiblePackageEventArgs)">
<summary>
Called when a package was not detected but a package using the same provider key was.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectRelatedMsiPackage(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectRelatedMsiPackageEventArgs)">
<summary>
Called when a related MSI package has been detected for a package.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectTargetMsiPackage(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectTargetMsiPackageEventArgs)">
<summary>
Called when an MSP package detects a target MSI has been detected.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectMsiFeature(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectMsiFeatureEventArgs)">
<summary>
Called when an MSI feature has been detected for a package.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectPackageComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectPackageCompleteEventArgs)">
<summary>
Called when the detection for a specific package has completed.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnDetectComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectCompleteEventArgs)">
<summary>
Called when the detection phase has completed.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnPlanBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanBeginEventArgs)">
<summary>
Called when the engine has begun planning the installation.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnPlanRelatedBundle(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanRelatedBundleEventArgs)">
<summary>
Called when the engine has begun planning for a prior bundle.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnPlanPackageBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanPackageBeginEventArgs)">
<summary>
Called when the engine has begun planning the installation of a specific package.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnPlanCompatiblePackage(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanCompatiblePackageEventArgs)">
<summary>
Called when the engine plans a new, compatible package using the same provider key.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnPlanTargetMsiPackage(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanTargetMsiPackageEventArgs)">
<summary>
Called when the engine is about to plan the target MSI of a MSP package.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnPlanMsiFeature(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanMsiFeatureEventArgs)">
<summary>
Called when the engine is about to plan an MSI feature of a specific package.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnPlanPackageComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanPackageCompleteEventArgs)">
<summary>
Called when then engine has completed planning the installation of a specific package.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnPlanComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanCompleteEventArgs)">
<summary>
Called when the engine has completed planning the installation.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnApplyBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ApplyBeginEventArgs)">
<summary>
Called when the engine has begun installing the bundle.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnApplyPhaseCount(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ApplyPhaseCountArgs)">
<summary>
Called right after OnApplyBegin.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnElevate(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ElevateEventArgs)">
<summary>
Called when the engine is about to start the elevated process.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnRegisterBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.RegisterBeginEventArgs)">
<summary>
Called when the engine has begun registering the location and visibility of the bundle.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnRegisterComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.RegisterCompleteEventArgs)">
<summary>
Called when the engine has completed registering the location and visilibity of the bundle.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnUnregisterBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.UnregisterBeginEventArgs)">
<summary>
Called when the engine has begun removing the registration for the location and visibility of the bundle.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnUnregisterComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.UnregisterCompleteEventArgs)">
<summary>
Called when the engine has completed removing the registration for the location and visibility of the bundle.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCacheBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CacheBeginEventArgs)">
<summary>
Called when the engine begins to cache the installation sources.
</summary>
<param name="args"></param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCachePackageBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CachePackageBeginEventArgs)">
<summary>
Called by the engine when it begins to cache a specific package.
</summary>
<param name="args"></param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCacheAcquireBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CacheAcquireBeginEventArgs)">
<summary>
Called when the engine begins to cache the container or payload.
</summary>
<param name="args"></param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCacheAcquireProgress(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CacheAcquireProgressEventArgs)">
<summary>
Called when the engine has progressed on caching the container or payload.
</summary>
<param name="args"></param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnResolveSource(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ResolveSourceEventArgs)">
<summary>
Called by the engine to allow the user experience to change the source
using <see cref="M:Engine.SetLocalSource"/> or <see cref="M:Engine.SetDownloadSource"/>.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCacheAcquireComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CacheAcquireCompleteEventArgs)">
<summary>
Called when the engine complets caching of the container or payload.
</summary>
<param name="args"></param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCacheVerifyBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CacheVerifyBeginEventArgs)">
<summary>
Called when the engine has started verify the payload.
</summary>
<param name="args"></param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCacheVerifyComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CacheVerifyCompleteEventArgs)">
<summary>
Called when the engine completes verification of the payload.
</summary>
<param name="args"></param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCachePackageComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CachePackageCompleteEventArgs)">
<summary>
Called when the engine completes caching a specific package.
</summary>
<param name="args"></param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnCacheComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.CacheCompleteEventArgs)">
<summary>
Called after the engine has cached the installation sources.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnExecuteBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ExecuteBeginEventArgs)">
<summary>
Called when the engine has begun installing packages.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnExecutePackageBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ExecutePackageBeginEventArgs)">
<summary>
Called when the engine has begun installing a specific package.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnExecutePatchTarget(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ExecutePatchTargetEventArgs)">
<summary>
Called when the engine executes one or more patches targeting a product.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnError(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ErrorEventArgs)">
<summary>
Called when the engine has encountered an error.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnProgress(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ProgressEventArgs)">
<summary>
Called when the engine has changed progress for the bundle installation.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnExecuteMsiMessage(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ExecuteMsiMessageEventArgs)">
<summary>
Called when Windows Installer sends an installation message.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnExecuteFilesInUse(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ExecuteFilesInUseEventArgs)">
<summary>
Called when Windows Installer sends a file in use installation message.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnExecutePackageComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ExecutePackageCompleteEventArgs)">
<summary>
Called when the engine has completed installing a specific package.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnExecuteComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ExecuteCompleteEventArgs)">
<summary>
Called when the engine has completed installing packages.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnRestartRequired(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.RestartRequiredEventArgs)">
<summary>
Called by the engine to request a restart now or inform the user a manual restart is required later.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnApplyComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ApplyCompleteEventArgs)">
<summary>
Called when the engine has completed installing the bundle.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnExecuteProgress(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ExecuteProgressEventArgs)">
<summary>
Called by the engine while executing on payload.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnLaunchApprovedExeBegin(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.LaunchApprovedExeBeginArgs)">
<summary>
Called by the engine before trying to launch the preapproved executable.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication.OnLaunchApprovedExeComplete(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.LaunchApprovedExeCompleteArgs)">
<summary>
Called by the engine after trying to launch the preapproved executable.
</summary>
<param name="args">Additional arguments for this event.</param>
</member>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationAttribute">
<summary>
Identifies the bootstrapper application class.
</summary>
<remarks>
This required assembly attribute identifies the bootstrapper application class.
</remarks>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationAttribute.#ctor(System.Type)">
<summary>
Creates a new instance of the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationAttribute"/> class.
</summary>
<param name="bootstrapperApplicationType">The <see cref="T:System.Type"/> of the user experience, or null for the default user experience.</param>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationAttribute.BootstrapperApplicationType">
<summary>
Gets the type of the bootstrapper application class to create.
</summary>
</member>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationFactory">
<summary>
Class used by the MUX host to create and return the IBootstrapperApplication implementation to the engine.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationFactory.#ctor">
<summary>
Creates a new instance of the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationFactory"/> class.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationFactory.Create(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.IBootstrapperEngine,Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Command@)">
<summary>
Loads the bootstrapper application assembly and creates an instance of the IBootstrapperApplication.
</summary>
<param name="pEngine">IBootstrapperEngine provided for the bootstrapper application.</param>
<param name="command">Command line for the bootstrapper application.</param>
<returns>Bootstrapper application via <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.IBootstrapperApplication"/> interface.</returns>
<exception cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.MissingAttributeException">The bootstrapper application assembly
does not define the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationAttribute"/>.</exception>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationFactory.GetBootstrapperApplicationTypeFromAssembly(System.String)">
<summary>
Locates the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplicationAttribute"/> and returns the specified type.
</summary>
<param name="assemblyName">The assembly that defines the user experience class.</param>
<returns>The bootstrapper application <see cref="T:System.Type"/>.</returns>
</member>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperSectionGroup">
<summary>
Handler for the wix.bootstrapper configuration section group.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperSectionGroup.#ctor">
<summary>
Creates a new instance of the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperSectionGroup"/> class.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperSectionGroup.Host">
<summary>
Gets the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.HostSection"/> handler for the mux configuration section.
</summary>
</member>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SupportedFrameworkElementCollection">
<summary>
Handler for the supportedFramework collection.
</summary>
</member>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SupportedFrameworkElement">
<summary>
Handler for the supportedFramework configuration section.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SupportedFrameworkElement.#ctor">
<summary>
Creates a new instance of the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SupportedFrameworkElement"/> class.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SupportedFrameworkElement.Version">
<summary>
Gets the version of the supported framework.
</summary>
<remarks>
The assembly specified by this name must contain a value matching the NETFX version registry key under
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP".
</remarks>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.SupportedFrameworkElement.RuntimeVersion">
<summary>
Gets the runtime version required by this supported framework.
</summary>
</member>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine">
<summary>
Container class for the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.IBootstrapperEngine"/> interface.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.#ctor(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.IBootstrapperEngine)">
<summary>
Creates a new instance of the <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine"/> container class.
</summary>
<param name="engine">The <see cref="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.IBootstrapperEngine"/> to contain.</param>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.NumericVariables">
<summary>
Gets or sets numeric variables for the engine.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.PackageCount">
<summary>
Gets the number of packages in the bundle.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.SecureStringVariables">
<summary>
Gets or sets string variables for the engine using SecureStrings.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.StringVariables">
<summary>
Gets or sets string variables for the engine.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.VersionVariables">
<summary>
Gets or sets <see cref="T:System.Version"/> variables for the engine.
The <see cref="T:System.Version"/> class can keep track of when the build and revision fields are undefined, but the engine can't.
Therefore, the build and revision fields must be defined when setting a <see cref="T:System.Version"/> variable.
Use the NormalizeVersion method to make sure the engine can accept the Version.
To keep track of versions without build or revision fields, use StringVariables instead.
</summary>
<exception cref="T:System.OverflowException">The given <see cref="T:System.Version"/> was invalid.</exception>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Apply(System.IntPtr)">
<summary>
Install the packages.
</summary>
<param name="hwndParent">The parent window for the installation user interface.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.CloseSplashScreen">
<summary>
Close the splash screen if it is still open. Does nothing if the splash screen is not or
never was opened.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Detect">
<summary>
Determine if all installation conditions are fulfilled.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Detect(System.IntPtr)">
<summary>
Determine if all installation conditions are fulfilled.
</summary>
<param name="hwndParent">The parent window for the installation user interface.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Elevate(System.IntPtr)">
<summary>
Elevate the install.
</summary>
<param name="hwndParent">The parent window of the elevation dialog.</param>
<returns>true if elevation succeeded; otherwise, false if the user cancelled.</returns>
<exception cref="T:System.ComponentModel.Win32Exception">A Win32 error occurred.</exception>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.EscapeString(System.String)">
<summary>
Escapes the input string.
</summary>
<param name="input">The string to escape.</param>
<returns>The escaped string.</returns>
<exception cref="T:System.ComponentModel.Win32Exception">A Win32 error occurred.</exception>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.EvaluateCondition(System.String)">
<summary>
Evaluates the <paramref name="condition"/> string.
</summary>
<param name="condition">The string representing the condition to evaluate.</param>
<returns>Whether the condition evaluated to true or false.</returns>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.FormatString(System.String)">
<summary>
Formats the input string.
</summary>
<param name="format">The string to format.</param>
<returns>The formatted string.</returns>
<exception cref="T:System.ComponentModel.Win32Exception">A Win32 error occurred.</exception>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.LaunchApprovedExe(System.IntPtr,System.String,System.String)">
<summary>
Launches a preapproved executable elevated. As long as the engine already elevated, there will be no UAC prompt.
</summary>
<param name="hwndParent">The parent window of the elevation dialog (if the engine hasn't elevated yet).</param>
<param name="approvedExeForElevationId">Id of the ApprovedExeForElevation element specified when the bundle was authored.</param>
<param name="arguments">Optional arguments.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.LaunchApprovedExe(System.IntPtr,System.String,System.String,System.Int32)">
<summary>
Launches a preapproved executable elevated. As long as the engine already elevated, there will be no UAC prompt.
</summary>
<param name="hwndParent">The parent window of the elevation dialog (if the engine hasn't elevated yet).</param>
<param name="approvedExeForElevationId">Id of the ApprovedExeForElevation element specified when the bundle was authored.</param>
<param name="arguments">Optional arguments.</param>
<param name="waitForInputIdleTimeout">Timeout in milliseconds. When set to something other than zero, the engine will call WaitForInputIdle for the new process with this timeout before calling OnLaunchApprovedExeComplete.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Log(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.LogLevel,System.String)">
<summary>
Logs the <paramref name="message"/>.
</summary>
<param name="level">The logging level.</param>
<param name="message">The message to log.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Plan(Microsoft.Tools.WindowsInstallerXml.Bootstrapper.LaunchAction)">
<summary>
Determine the installation sequencing and costing.
</summary>
<param name="action">The action to perform when planning.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.SetUpdate(System.String,System.String,System.Int64,Microsoft.Tools.WindowsInstallerXml.Bootstrapper.UpdateHashType,System.Byte[])">
<summary>
Set the update information for a bundle.
</summary>
<param name="localSource">Optional local source path for the update. Default is "update\[OriginalNameOfBundle].exe".</param>
<param name="downloadSource">Optional download source for the update.</param>
<param name="size">Size of the expected update.</param>
<param name="hashType">Type of the hash expected on the update.</param>
<param name="hash">Optional hash expected for the update.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.SetLocalSource(System.String,System.String,System.String)">
<summary>
Set the local source for a package or container.
</summary>
<param name="packageOrContainerId">The id that uniquely identifies the package or container.</param>
<param name="payloadId">The id that uniquely identifies the payload.</param>
<param name="path">The new source path.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.SetDownloadSource(System.String,System.String,System.String,System.String,System.String)">
<summary>
Set the new download URL for a package or container.
</summary>
<param name="packageOrContainerId">The id that uniquely identifies the package or container.</param>
<param name="payloadId">The id that uniquely identifies the payload.</param>
<param name="url">The new url.</param>
<param name="user">The user name for proxy authentication.</param>
<param name="password">The password for proxy authentication.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.SendEmbeddedError(System.Int32,System.String,System.Int32)">
<summary>
Sends error message when embedded.
</summary>
<param name="errorCode">Error code.</param>
<param name="message">Error message.</param>
<param name="uiHint">UI buttons to show on error dialog.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.SendEmbeddedProgress(System.Int32,System.Int32)">
<summary>
Sends progress percentages when embedded.
</summary>
<param name="progressPercentage">Percentage completed thus far.</param>
<param name="overallPercentage">Overall percentage completed.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Quit(System.Int32)">
<summary>
Shuts down the engine.
</summary>
<param name="exitCode">Exit code indicating reason for shut down.</param>
</member>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Variables`1">
<summary>
An accessor for numeric, string, and version variables for the engine.
</summary>
</member>
<member name="P:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Variables`1.Item(System.String)">
<summary>
Gets or sets the variable given by <paramref name="name"/>.
</summary>
<param name="name">The name of the variable to get/set.</param>
<returns>The value of the given variable.</returns>
<exception cref="T:System.Exception">An error occurred getting the variable.</exception>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.Variables`1.Contains(System.String)">
<summary>
Gets whether the variable given by <paramref name="name"/> exists.
</summary>
<param name="name">The name of the variable to check.</param>
<returns>True if the variable given by <paramref name="name"/> exists; otherwise, false.</returns>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.containsVariable(System.String)">
<summary>
Gets whether the variable given by <paramref name="name"/> exists.
</summary>
<param name="name">The name of the variable to check.</param>
<returns>True if the variable given by <paramref name="name"/> exists; otherwise, false.</returns>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.getStringVariable(System.String,System.Int32@)">
<summary>
Gets the variable given by <paramref name="name"/> as a string.
</summary>
<param name="name">The name of the variable to get.</param>
<param name="length">The length of the Unicode string.</param>
<returns>The value by a pointer to a Unicode string. Must be freed by Marshal.FreeCoTaskMem.</returns>
<exception cref="T:System.Exception">An error occurred getting the variable.</exception>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.convertToSecureString(System.IntPtr,System.Int32)">
<summary>
Initialize a SecureString with the given Unicode string.
</summary>
<param name="pUniString">Pointer to Unicode string.</param>
<param name="length">The string's length.</param>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.Engine.NormalizeVersion(System.Version)">
<summary>
Verifies that VersionVariables can pass on the given Version to the engine.
If the Build or Revision fields are undefined, they are set to zero.
</summary>
</member>
<member name="T:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ResultEventArgs">
<summary>
Base class for <see cref="T:System.EventArgs"/> classes that must return a value.
</summary>
</member>
<member name="M:Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ResultEventArgs.#ctor">