C# Class CodeCake.CakeArguments

Inheritance: ICakeArguments
Mostra file Open project: SimpleGitVersion/CodeCake Class Usage Examples

Public Methods

Method Description
CakeArguments ( ) : System

Initializes a new instance of the CakeArguments class.

CakeArguments ( string>.IDictionary arguments ) : System

Initializes a new instance of the CakeArguments class based on the given dictionary of arguments.

GetArgument ( string name ) : string

Gets an argument.

HasArgument ( string name ) : bool

Determines whether or not the specified argument exist.

SetArguments ( string>.IDictionary arguments ) : void

Initializes the argument list.

Method Details

CakeArguments() public method

Initializes a new instance of the CakeArguments class.
public CakeArguments ( ) : System
return System

CakeArguments() public method

Initializes a new instance of the CakeArguments class based on the given dictionary of arguments.
public CakeArguments ( string>.IDictionary arguments ) : System
arguments string>.IDictionary The arguments.
return System

GetArgument() public method

Gets an argument.
public GetArgument ( string name ) : string
name string The argument name.
return string

HasArgument() public method

Determines whether or not the specified argument exist.
public HasArgument ( string name ) : bool
name string The argument name.
return bool

SetArguments() public method

Initializes the argument list.
public SetArguments ( string>.IDictionary arguments ) : void
arguments string>.IDictionary The arguments.
return void