Skip to content

IMbaCommand Interface

Command information parsed from the command line.

MethodDescription
SetOverridableVariables(overridableVariables, engine)Sets overridable variables from the command line.
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.5+b9b2f1b4c69a1b509d487dc950b30b4ec9b0d040

SetOverridableVariables(overridableVariables, engine) Method

Section titled “SetOverridableVariables(overridableVariables, engine) Method”

Sets overridable variables from the command line.

public void SetOverridableVariables(
IOverridableVariables overridableVariables,
IEngine engine
)
ParameterTypeDescription
overridableVariablesIOverridableVariablesThe overridable variable information from .
engineIEngineThe engine.

Gets the action to perform if a reboot is required.

public Restart Restart { get; set; }

The command line arguments not parsed into «see T:WixToolset.Mba.Core.IBootstrapperCommand» or «see T:WixToolset.Mba.Core.IMbaCommand» .

public System.String[] UnknownCommandLineArgs { get; set; }

The variables that were parsed from the command line. Key = variable name, Value = variable value.

public System.Collections.Generic.KeyValuePair<System.String,System.String><> Variables { get; set; }