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