C# 클래스 DotNetMigrations.Core.ArgumentSet

파일 보기 프로젝트 열기: jpoehls/dotnetmigrations 1 사용 예제들

공개 메소드들

메소드 설명
ContainsName ( string name ) : bool

Returns True/False whether this set contains and argument with the given name.

GetByName ( string name ) : string

Returns the value of the argument with the given name.

Parse ( string args ) : ArgumentSet

Parses an array of arguments into collections of named and anonymous arguments.

비공개 메소드들

메소드 설명
ArgumentSet ( ) : System
GetName ( string arg ) : string

Returns the name without the prefix.

IsName ( string arg ) : bool

Returns True/False whether the given argument is a name or not.

메소드 상세

ContainsName() 공개 메소드

Returns True/False whether this set contains and argument with the given name.
public ContainsName ( string name ) : bool
name string
리턴 bool

GetByName() 공개 메소드

Returns the value of the argument with the given name.
public GetByName ( string name ) : string
name string
리턴 string

Parse() 공개 정적인 메소드

Parses an array of arguments into collections of named and anonymous arguments.
public static Parse ( string args ) : ArgumentSet
args string
리턴 ArgumentSet