2 instantiations of SettingElement
System (2)
sys\system\configuration\ClientSettingsStore.cs (1)
176
se = new
SettingElement
();
sys\system\configuration\sections\ClientSettingsSection.cs (1)
62
return new
SettingElement
();
10 references to SettingElement
System (10)
sys\system\configuration\ClientSettingsStore.cs (3)
101
foreach (
SettingElement
setting in section.Settings) {
135
foreach (
SettingElement
setting in section.Settings) {
173
SettingElement
se = sec.Get((string) entry.Key);
sys\system\configuration\sections\ClientSettingsSection.cs (7)
66
return ((
SettingElement
)element).Key;
69
public
SettingElement
Get(string elementKey) {
70
return (
SettingElement
) BaseGet(elementKey);
73
public void Add(
SettingElement
element) {
77
public void Remove(
SettingElement
element) {
118
SettingElement
u = settings as
SettingElement
;