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.5+b9b2f1b4c69a1b509d487dc950b30b4ec9b0d040 |
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; }