C# Class WebSettings, FileZilla.NET

Datei anzeigen Open project: sancsoft/FileZilla.NET Class Usage Examples

Protected Properties

Property Type Description
settingsXML XmlDocument

Public Methods

Method Description
Lookup ( string key ) : string

Get a setting as a string value; throw an exception if its not found

Lookup ( string key, string defaultValue ) : string

Get a setting as a string value or use default if setting is undefined

WebSettings ( ) : System

Construct the web settings object. If the settings are not loaded, load them

Method Details

Lookup() public method

Get a setting as a string value; throw an exception if its not found
public Lookup ( string key ) : string
key string key
return string

Lookup() public method

Get a setting as a string value or use default if setting is undefined
public Lookup ( string key, string defaultValue ) : string
key string key
defaultValue string value to use if setting not found
return string

WebSettings() public method

Construct the web settings object. If the settings are not loaded, load them
public WebSettings ( ) : System
return System

Property Details

settingsXML protected_oe property

protected XmlDocument settingsXML
return XmlDocument