C# Class Uiml.FrontEnd.Options

ファイルを表示 Open project: jozilla/Uiml.net

Public Methods

Method Description
HasArgument ( string key ) : bool

See whether the argument "key" is passed on the command line with a value

IsUsed ( string key ) : bool

See whether the argument "key" is passed on the command line

Options ( string args, string possibilities ) : System

Processes command line options, given the arguments passed on the command line and all the possible arguments the program understands.

ToString ( ) : String

Shows all the options and their values that are stored

this ( String key ) : String

Queries for the value that was passed with the argument

Private Methods

Method Description
Store ( string args, string possibilities ) : void

Method Details

HasArgument() public method

See whether the argument "key" is passed on the command line with a value
public HasArgument ( string key ) : bool
key string
return bool

IsUsed() public method

See whether the argument "key" is passed on the command line
public IsUsed ( string key ) : bool
key string
return bool

Options() public method

Processes command line options, given the arguments passed on the command line and all the possible arguments the program understands.
public Options ( string args, string possibilities ) : System
args string
possibilities string
return System

ToString() public method

Shows all the options and their values that are stored
public ToString ( ) : String
return String

this() public method

Queries for the value that was passed with the argument
public this ( String key ) : String
key String
return String