C# 클래스 NFe.Components.IniFile

파일 보기 프로젝트 열기: akretion/uninfe

공개 메소드들

메소드 설명
DeleteKey ( string Key, string Section = null ) : void
DeleteSection ( string Section = null ) : void
IniFile ( string IniPath = null ) : System
KeyExists ( string Key, string Section = null ) : bool
Read ( string Key, string Section = null ) : string
Write ( string Key, string Value, string Section = null ) : void

비공개 메소드들

메소드 설명
GetPrivateProfileString ( string Section, string Key, string Default, StringBuilder RetVal, int Size, string FilePath ) : int
WritePrivateProfileString ( string Section, string Key, string Value, string FilePath ) : long

메소드 상세

DeleteKey() 공개 메소드

public DeleteKey ( string Key, string Section = null ) : void
Key string
Section string
리턴 void

DeleteSection() 공개 메소드

public DeleteSection ( string Section = null ) : void
Section string
리턴 void

IniFile() 공개 메소드

public IniFile ( string IniPath = null ) : System
IniPath string
리턴 System

KeyExists() 공개 메소드

public KeyExists ( string Key, string Section = null ) : bool
Key string
Section string
리턴 bool

Read() 공개 메소드

public Read ( string Key, string Section = null ) : string
Key string
Section string
리턴 string

Write() 공개 메소드

public Write ( string Key, string Value, string Section = null ) : void
Key string
Value string
Section string
리턴 void