C# Класс SANTA.IO.ConfigReader

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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