IMbaCommand Interface
Command information parsed from the command line.
Methods
Section titled “Methods”| Method | Description |
|---|---|
| SetOverridableVariables(overridableVariables, engine) | Sets overridable variables from the command line. |
Properties
Section titled “Properties”| Property | Description |
|---|---|
| Restart | Gets the action to perform if a reboot is required. |
| UnknownCommandLineArgs | The command line arguments not parsed into «see T:WixToolset.Mba.Core.IBootstrapperCommand» or «see T:WixToolset.Mba.Core.IMbaCommand» . |
| Variables | The variables that were parsed from the command line. Key = variable name, Value = variable value. |
WixToolset.Mba.Core.dll version 4.0.5+b9b2f1b4c69a1b509d487dc950b30b4ec9b0d040 |
SetOverridableVariables(overridableVariables, engine) Method
Section titled “SetOverridableVariables(overridableVariables, engine) Method”Sets overridable variables from the command line.
Declaration
Section titled “Declaration”public void SetOverridableVariables( IOverridableVariables overridableVariables, IEngine engine)Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| overridableVariables | IOverridableVariables | The overridable variable information from . |
| engine | IEngine | The engine. |
Restart Property
Section titled “Restart Property”Gets the action to perform if a reboot is required.
Declaration
Section titled “Declaration”public Restart Restart { get; set; }UnknownCommandLineArgs Property
Section titled “UnknownCommandLineArgs Property”The command line arguments not parsed into «see T:WixToolset.Mba.Core.IBootstrapperCommand» or «see T:WixToolset.Mba.Core.IMbaCommand» .
Declaration
Section titled “Declaration”public System.String[] UnknownCommandLineArgs { get; set; }Variables Property
Section titled “Variables Property”The variables that were parsed from the command line. Key = variable name, Value = variable value.
Declaration
Section titled “Declaration”public System.Collections.Generic.KeyValuePair<System.String,System.String><> Variables { get; set; }