C# Class CodeKing.SqlHarvester.Core.Configuration.HarvestConfigurationSection

The application settings which takes default values for the configurration file, but may be overriden at runtime with commandline args in some cases. delpoy service.
Inheritance: System.Configuration.ConfigurationSection
显示文件 Open project: TheCodeKing/SqlHarvester.Net

Public Methods

Method Description
ContainsKey ( string key ) : bool

Determines whether the dictionary contains the specified key.

IsReadOnly ( ) : bool

Gets a value indicating whether the object is read-only.

this ( string key ) : string

Validates this instance.

Gets the System.String with the specified key.

Protected Methods

Method Description
GetConfigurationProperty ( string key ) : ConfigurationProperty

Gets the configuration property.

GetConfigurationValue ( string key ) : object

Gets the configuration value without first verifying that the value exists.

SetConfigurationValue ( string key, object value ) : void

Sets the configuration value without first verifying that the value exists.

Method Details

ContainsKey() public method

Determines whether the dictionary contains the specified key.
public ContainsKey ( string key ) : bool
key string The key.
return bool

GetConfigurationProperty() protected method

Gets the configuration property.
protected GetConfigurationProperty ( string key ) : ConfigurationProperty
key string The key.
return System.Configuration.ConfigurationProperty

GetConfigurationValue() protected method

Gets the configuration value without first verifying that the value exists.
protected GetConfigurationValue ( string key ) : object
key string The key.
return object

IsReadOnly() public method

Gets a value indicating whether the object is read-only.
public IsReadOnly ( ) : bool
return bool

SetConfigurationValue() protected method

Sets the configuration value without first verifying that the value exists.
protected SetConfigurationValue ( string key, object value ) : void
key string The key.
value object The value.
return void

this() public method

Validates this instance. Gets the System.String with the specified key.
public this ( string key ) : string
key string
return string