C# Class OpenQA.Selenium.Firefox.Internal.IniFileReader

Parses and reads an INI file.
ファイルを表示 Open project: asynchrony/Selenium2 Class Usage Examples

Public Methods

Method Description
GetValue ( string sectionName, string valueName ) : string

Gets a value from the .INI file.

IniFileReader ( string fileName ) : System

Initializes a new instance of the IniFileReader class.

Method Details

GetValue() public method

Gets a value from the .INI file.
public GetValue ( string sectionName, string valueName ) : string
sectionName string The section in which to find the key-value pair.
valueName string The key of the key-value pair.
return string

IniFileReader() public method

Initializes a new instance of the IniFileReader class.
public IniFileReader ( string fileName ) : System
fileName string The full path to the .INI file to be read.
return System