C# Class FOMonitor.IniReader

Exibir arquivo Open project: rotators/tools Class Usage Examples

Private Properties

Property Type Description
GetPrivateProfileString int
WritePrivateProfileString long

Public Methods

Method Description
IniReadInt ( string Section, string Key ) : int
IniReadValue ( string Section, string Key ) : string
IniReader ( string INIPath ) : System
IniWriteInt ( string Section, string Key, int Value ) : void
IniWriteValue ( string Section, string Key, string Value ) : void

Private Methods

Method Description
GetPrivateProfileString ( string section, string key, string def, StringBuilder retVal, int size, string filePath ) : int
WritePrivateProfileString ( string section, string key, string val, string filePath ) : long

Method Details

IniReadInt() public method

public IniReadInt ( string Section, string Key ) : int
Section string
Key string
return int

IniReadValue() public method

public IniReadValue ( string Section, string Key ) : string
Section string
Key string
return string

IniReader() public method

public IniReader ( string INIPath ) : System
INIPath string
return System

IniWriteInt() public method

public IniWriteInt ( string Section, string Key, int Value ) : void
Section string
Key string
Value int
return void

IniWriteValue() public method

public IniWriteValue ( string Section, string Key, string Value ) : void
Section string
Key string
Value string
return void