Interface IKNetConnectConfiguration
Interface to simplify access configuration information
public interface IKNetConnectConfiguration : IEnumerable<KeyValuePair<string, object>>, IEnumerable
- Inherited Members
Methods
Exist(string)
Returns true if the key exist
bool Exist(string key)
Parameters
keystringThe key to check
Returns
GetBoolean(string)
Returns bool associated to key
bool GetBoolean(string key)
Parameters
keystringThe key to return
Returns
GetClass(string)
Returns Class associated to key
Class GetClass(string key)
Parameters
keystringThe key to return
Returns
GetDouble(string)
Returns double associated to key
double GetDouble(string key)
Parameters
keystringThe key to return
Returns
GetInt(string)
Returns int associated to key
int GetInt(string key)
Parameters
keystringThe key to return
Returns
GetList(string)
List<string> GetList(string key)
Parameters
keystringThe key to return
Returns
GetLong(string)
Returns long associated to key
long GetLong(string key)
Parameters
keystringThe key to return
Returns
GetPassword(string)
Returns Password associated to key
Password GetPassword(string key)
Parameters
keystringThe key to return
Returns
GetShort(string)
Returns short associated to key
short GetShort(string key)
Parameters
keystringThe key to return
Returns
GetString(string)
Returns string associated to key
string GetString(string key)
Parameters
keystringThe key to return