ICommandLineArguments Interface
Parsed command-line arguments.
Methods
Method | Description |
---|---|
Parse() | Parses this arguments after it is populated. |
Populate(commandLine) | Populate this argument from a string. |
Populate(args) | Populate this argument from array of strings. |
WixToolset.Extensibility.dll
version 5.0.2+aa65968c419420d32e3e1b647aea0082f5ca5b78
Parse() Method
Parses this arguments after it is populated.
Declaration
public WixToolset.Extensibility.Services.ICommandLineParser Parse()
Return value
WixToolset.Extensibility.Services.ICommandLineParser
Parser for this arguments.
Populate(commandLine) Method
Populate this argument from a string.
Declaration
public void Populate(
string commandLine
)
Parameters
Parameter | Type | Description |
---|---|---|
commandLine | string | String to parse. |
Populate(args) Method
Populate this argument from array of strings.
Declaration
public void Populate(
System.String[] args
)
Parameters
Parameter | Type | Description |
---|---|---|
args | System.String[] | Array of strings. |