C# 클래스 SANTA.IO.ConfigReader

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

공개 메소드들

메소드 설명
ConfigReader ( ) : System
getConfigValue ( string values ) : HashSet
getValue ( string key ) : string

This method allows the program to access the configuration file using a single interface. Checks the configuration file for the key given and returns either the value, if found, or an exception should the key not exist.

hasValue ( string key ) : bool

Determines if the config file has the specified key. Compares it to the default config file.

setValue ( string key, string value ) : bool

메소드 상세

ConfigReader() 공개 메소드

public ConfigReader ( ) : System
리턴 System

getConfigValue() 공개 메소드

public getConfigValue ( string values ) : HashSet
values string
리턴 HashSet

getValue() 공개 메소드

This method allows the program to access the configuration file using a single interface. Checks the configuration file for the key given and returns either the value, if found, or an exception should the key not exist.
public getValue ( string key ) : string
key string Key to check the value of.
리턴 string

hasValue() 공개 메소드

Determines if the config file has the specified key. Compares it to the default config file.
public hasValue ( string key ) : bool
key string Name of the key to check
리턴 bool

setValue() 공개 메소드

public setValue ( string key, string value ) : bool
key string
value string
리턴 bool