C# Класс Drey.AppConfigApplicationSettings

Allows access to the app.config application settings
Наследование: System.MarshalByRefObject, IApplicationSettings, IGlobalSettings
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Exists ( string key ) : bool

Check to see if a given key exists within the application settings.

Register ( string key, string value = "" ) : void

Registers an application key/value pair.

this ( string key ) : string

Gets the application setting associated with the key.

Описание методов

Exists() публичный Метод

Check to see if a given key exists within the application settings.
public Exists ( string key ) : bool
key string The key.
Результат bool

Register() публичный Метод

Registers an application key/value pair.
public Register ( string key, string value = "" ) : void
key string The key.
value string The value.
Результат void

this() публичный Метод

Gets the application setting associated with the key.
public this ( string key ) : string
key string The key.
Результат string