C# 클래스 TShockAPI.ConfigFile

파일 보기 프로젝트 열기: NyxStudios/TShock 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
ConfigRead Action

공개 메소드들

메소드 설명
DumpDescriptions ( ) : void

Dumps all configuration options to a text file in Markdown format

Read ( Stream stream ) : ConfigFile

Reads the configuration file from a stream

Read ( string path ) : ConfigFile

Reads a configuration file from a given path

Write ( Stream stream ) : void

Writes the configuration to a stream

Write ( string path ) : void

Writes the configuration to a given path

메소드 상세

DumpDescriptions() 공개 정적인 메소드

Dumps all configuration options to a text file in Markdown format
public static DumpDescriptions ( ) : void
리턴 void

Read() 공개 정적인 메소드

Reads the configuration file from a stream
public static Read ( Stream stream ) : ConfigFile
stream Stream stream
리턴 ConfigFile

Read() 공개 정적인 메소드

Reads a configuration file from a given path
public static Read ( string path ) : ConfigFile
path string string path
리턴 ConfigFile

Write() 공개 메소드

Writes the configuration to a stream
public Write ( Stream stream ) : void
stream Stream stream
리턴 void

Write() 공개 메소드

Writes the configuration to a given path
public Write ( string path ) : void
path string string path - Location to put the config file
리턴 void

프로퍼티 상세

ConfigRead 공개적으로 정적으로 프로퍼티

On config read hook
public static Action ConfigRead
리턴 Action