C# 클래스 Global.IniFile

Create a New INI file to store or load data
파일 보기 프로젝트 열기: mti-rfid/RFID_Explorer

공개 프로퍼티들

프로퍼티 타입 설명
path string

공개 메소드들

메소드 설명
IniFile ( string INIPath ) : System

INIFile Constructor.

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

Write Data to the INI File

ReadBool ( string Section, string Ident, bool Default ) : bool
ReadInteger ( string Section, string Ident, UInt32 Default ) : UInt32
ReadInteger64 ( string Section, string Ident, UInt32 Default ) : System.UInt64
ReadString ( string Section, string Ident, string Default ) : string
WriteInteger ( string Section, string Ident, int Value ) : void
WriteString ( string Section, string Ident, string Value ) : void

Read Data Value From the Ini File

비공개 메소드들

메소드 설명
GetPrivateProfileString ( string section, string key, string def, byte retVal, Int32 size, string filePath ) : UInt32
WritePrivateProfileString ( string section, string key, string val, string filePath ) : bool

메소드 상세

IniFile() 공개 메소드

INIFile Constructor.
public IniFile ( string INIPath ) : System
INIPath string
리턴 System

IniWriteValue() 공개 메소드

Write Data to the INI File
public IniWriteValue ( string Section, string Key, string Value ) : void
Section string
Key string
Value string
리턴 void

ReadBool() 공개 메소드

public ReadBool ( string Section, string Ident, bool Default ) : bool
Section string
Ident string
Default bool
리턴 bool

ReadInteger() 공개 메소드

public ReadInteger ( string Section, string Ident, UInt32 Default ) : UInt32
Section string
Ident string
Default System.UInt32
리턴 System.UInt32

ReadInteger64() 공개 메소드

public ReadInteger64 ( string Section, string Ident, UInt32 Default ) : System.UInt64
Section string
Ident string
Default System.UInt32
리턴 System.UInt64

ReadString() 공개 메소드

public ReadString ( string Section, string Ident, string Default ) : string
Section string
Ident string
Default string
리턴 string

WriteInteger() 공개 메소드

public WriteInteger ( string Section, string Ident, int Value ) : void
Section string
Ident string
Value int
리턴 void

WriteString() 공개 메소드

Read Data Value From the Ini File
public WriteString ( string Section, string Ident, string Value ) : void
Section string
Ident string
Value string
리턴 void

프로퍼티 상세

path 공개적으로 프로퍼티

public string path
리턴 string