C# 클래스 Drey.AppConfigApplicationSettings

Allows access to the app.config application settings
상속: System.MarshalByRefObject, IApplicationSettings, IGlobalSettings
파일 보기 프로젝트 열기: dealproc/Drey 1 사용 예제들

공개 메소드들

메소드 설명
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