C# Class ExtensionLoader.Ini.IniDocument

ファイルを表示 Open project: 3di/3di-viewer-rei-libs Class Usage Examples

Public Methods

Method Description
IniDocument ( ) : System
IniDocument ( IniReader reader ) : System
IniDocument ( Stream stream ) : System
IniDocument ( Stream stream, IniFileType type ) : System
IniDocument ( TextReader reader ) : System
IniDocument ( TextReader reader, IniFileType type ) : System
IniDocument ( string filePath ) : System
IniDocument ( string filePath, IniFileType type ) : System
Load ( IniReader reader ) : void
Load ( Stream stream ) : void
Load ( TextReader reader ) : void
Load ( string filePath ) : void
Save ( Stream stream ) : void
Save ( TextWriter textWriter ) : void
Save ( string filePath ) : void

Private Methods

Method Description
GetIniReader ( TextReader reader, IniFileType type ) : IniReader

Returns a proper INI reader depending upon the type parameter.

GetIniWriter ( TextWriter reader, IniFileType type ) : IniWriter

Returns a proper IniWriter depending upon the type parameter.

LoadReader ( IniReader reader ) : void

Loads the file not saving comments.

Method Details

IniDocument() public method

public IniDocument ( ) : System
return System

IniDocument() public method

public IniDocument ( IniReader reader ) : System
reader IniReader
return System

IniDocument() public method

public IniDocument ( Stream stream ) : System
stream Stream
return System

IniDocument() public method

public IniDocument ( Stream stream, IniFileType type ) : System
stream Stream
type IniFileType
return System

IniDocument() public method

public IniDocument ( TextReader reader ) : System
reader System.IO.TextReader
return System

IniDocument() public method

public IniDocument ( TextReader reader, IniFileType type ) : System
reader System.IO.TextReader
type IniFileType
return System

IniDocument() public method

public IniDocument ( string filePath ) : System
filePath string
return System

IniDocument() public method

public IniDocument ( string filePath, IniFileType type ) : System
filePath string
type IniFileType
return System

Load() public method

public Load ( IniReader reader ) : void
reader IniReader
return void

Load() public method

public Load ( Stream stream ) : void
stream Stream
return void

Load() public method

public Load ( TextReader reader ) : void
reader System.IO.TextReader
return void

Load() public method

public Load ( string filePath ) : void
filePath string
return void

Save() public method

public Save ( Stream stream ) : void
stream Stream
return void

Save() public method

public Save ( TextWriter textWriter ) : void
textWriter System.IO.TextWriter
return void

Save() public method

public Save ( string filePath ) : void
filePath string
return void