C# Class ZeroInstall.Publish.Capture.CommandMapper.CommandTuple

An association of a command-line with a Command.
显示文件 Open project: 0install/0install-win

Public Properties

Property Type Description
Command Command
CommandLine string

Public Methods

Method Description
CommandTuple ( string commandLine, Command command ) : System

Creates a new command tuple.

Method Details

CommandTuple() public method

Creates a new command tuple.
public CommandTuple ( string commandLine, Command command ) : System
commandLine string The full command-line rooted in the filesystem.
command Command The command coressponding to the execution of the command-line.
return System

Property Details

Command public_oe property

The command coressponding to the execution of the command-line.
public Command Command
return Command

CommandLine public_oe property

The full command-line rooted in the filesystem.
public string CommandLine
return string