Skip to main content

IMbaCommand Interface

Command information parsed from the command line.

Methods​

MethodDescription
SetOverridableVariables(overridableVariables, engine)Sets overridable variables from the command line.

Properties​

PropertyDescription
RestartGets the action to perform if a reboot is required.
UnknownCommandLineArgsThe command line arguments not parsed into «see T:WixToolset.Mba.Core.IBootstrapperCommand» or «see T:WixToolset.Mba.Core.IMbaCommand» .
VariablesThe 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​

ParameterTypeDescription
overridableVariablesIOverridableVariablesThe overridable variable information from .
engineIEngineThe 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; }