C# 클래스 ConsoleFizzler.CommandLine

파일 보기 프로젝트 열기: atifaziz/Fizzler

공개 메소드들

메소드 설명
ParseFileTo ( string path, object target ) : string[]

Updates object from command-line arguments in a response file.

Line in the response file that begin with a hash (#) are considered as comments.

ParseFileTo ( string path, object target, PropertyDescriptorCollection properties ) : string[]

Updates object from command-line arguments in a response file properties describes the target object.

Line in the response file that begin with a hash (#) are considered as comments.

ParseTo ( IEnumerable args, object target ) : string[]

Updates object from command-line arguments.

ParseTo ( IEnumerable args, object target, PropertyDescriptorCollection properties ) : string[]

Updates object from command-line arguments where properties describes the target object.

ToArgs ( string>.IEnumerable args ) : IEnumerable

Returns a sequence of args from a sequence of pair where each key is prefixed with a switch token classic for the platform.

ToArgs ( string>.IEnumerable args, string switchToken ) : IEnumerable

Returns a sequence of args from a sequence of pair where each key is prefixed with switchToken.

비공개 메소드들

메소드 설명
ArgsFromImpl ( string>.IEnumerable args, string switchToken ) : IEnumerable
CommandLineToArgs ( string commandLine ) : string[]
CommandLineToArgvW ( [ lpCmdLine, int &pNumArgs ) : IntPtr

메소드 상세

ParseFileTo() 공개 정적인 메소드

Updates object from command-line arguments in a response file.
Line in the response file that begin with a hash (#) are considered as comments.
public static ParseFileTo ( string path, object target ) : string[]
path string
target object
리턴 string[]

ParseFileTo() 공개 정적인 메소드

Updates object from command-line arguments in a response file properties describes the target object.
Line in the response file that begin with a hash (#) are considered as comments.
public static ParseFileTo ( string path, object target, PropertyDescriptorCollection properties ) : string[]
path string
target object
properties System.ComponentModel.PropertyDescriptorCollection
리턴 string[]

ParseTo() 공개 정적인 메소드

Updates object from command-line arguments.
public static ParseTo ( IEnumerable args, object target ) : string[]
args IEnumerable
target object
리턴 string[]

ParseTo() 공개 정적인 메소드

Updates object from command-line arguments where properties describes the target object.
public static ParseTo ( IEnumerable args, object target, PropertyDescriptorCollection properties ) : string[]
args IEnumerable
target object
properties System.ComponentModel.PropertyDescriptorCollection
리턴 string[]

ToArgs() 공개 정적인 메소드

Returns a sequence of args from a sequence of pair where each key is prefixed with a switch token classic for the platform.
public static ToArgs ( string>.IEnumerable args ) : IEnumerable
args string>.IEnumerable
리턴 IEnumerable

ToArgs() 공개 정적인 메소드

Returns a sequence of args from a sequence of pair where each key is prefixed with switchToken.
public static ToArgs ( string>.IEnumerable args, string switchToken ) : IEnumerable
args string>.IEnumerable
switchToken string
리턴 IEnumerable