C# Class CodeCake.CakeArguments

Inheritance: ICakeArguments
Afficher le fichier Open project: SimpleGitVersion/CodeCake Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Initializes a new instance of the CakeArguments class.
public CakeArguments ( ) : System
Résultat System

CakeArguments() public méthode

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.
Résultat System

GetArgument() public méthode

Gets an argument.
public GetArgument ( string name ) : string
name string The argument name.
Résultat string

HasArgument() public méthode

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

SetArguments() public méthode

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