C# Class WizardWrx.Core.UnconfiguredDLLSettings.UnconfiguredSetting

Settings are organized into a private collection that belongs to the singleton.
Inheritance: IComparable
Mostrar archivo Open project: txwizard/WizardWrx_NET_API

Public Methods

Method Description
Equals ( object obj ) : bool

Override the Equals method on the base class to give a value that contains the absolute (fully qualified) configuration value name, composed of the configuration file name and the key name.

GetHashCode ( ) : int

Return a hash code based on the equality value.

ToString ( ) : string

Return a concatenated string composed of the name of the configuration file followed by the configuration value name.

UnconfiguredSetting ( string configFileName, string propertyName, string propertyValue ) : System

All interaction is expected to be with this constructor.

Private Methods

Method Description
IComparable ( other ) : int
UnconfiguredSetting ( ) : System

The default constructor is intended to remain unused.

Method Details

Equals() public method

Override the Equals method on the base class to give a value that contains the absolute (fully qualified) configuration value name, composed of the configuration file name and the key name.
public Equals ( object obj ) : bool
obj object /// Comparand ///
return bool

GetHashCode() public method

Return a hash code based on the equality value.
public GetHashCode ( ) : int
return int

ToString() public method

Return a concatenated string composed of the name of the configuration file followed by the configuration value name.
public ToString ( ) : string
return string

UnconfiguredSetting() public method

All interaction is expected to be with this constructor.
public UnconfiguredSetting ( string configFileName, string propertyName, string propertyValue ) : System
configFileName string /// Settings are associated with a named configuration file. Only /// its base name matters, however. ///
propertyName string /// Each property name must be unique within the scope of its /// configuration file. ///
propertyValue string /// The default property value is recorded herein for reference. ///
return System