C# Class LCM.LCM.URLParser

Internal URL parsing engine
Show file Open project: mlab-upenn/arch-apex Class Usage Examples

Public Methods

Method Description
Get ( string key, bool def ) : bool

Get value of a parameter

Get ( string key, double def ) : double

Get value of a parameter

Get ( string key, int def ) : int

Get value of a parameter

Get ( string key ) : string

Get value of a parameter

Get ( string key, string def ) : string

Get value of a parameter

URLParser ( string url ) : System

URL parser constructor

Method Details

Get() public method

Get value of a parameter
public Get ( string key, bool def ) : bool
key string parameter name
def bool default value
return bool

Get() public method

Get value of a parameter
public Get ( string key, double def ) : double
key string parameter name
def double default value
return double

Get() public method

Get value of a parameter
public Get ( string key, int def ) : int
key string parameter name
def int default value
return int

Get() public method

Get value of a parameter
public Get ( string key ) : string
key string parameter name
return string

Get() public method

Get value of a parameter
public Get ( string key, string def ) : string
key string parameter name
def string default value
return string

URLParser() public method

URL parser constructor
public URLParser ( string url ) : System
url string URL to parse
return System