C# 클래스 CodeCake.CakeArguments

상속: ICakeArguments
파일 보기 프로젝트 열기: SimpleGitVersion/CodeCake 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

CakeArguments() 공개 메소드

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

CakeArguments() 공개 메소드

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.
리턴 System

GetArgument() 공개 메소드

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

HasArgument() 공개 메소드

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

SetArguments() 공개 메소드

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