Пример #1
0
 public void Remove(PluginConfigurationElement configElement)
 {
     if (BaseIndexOf(configElement) >= 0)
         BaseRemove(configElement.Name);
 }
Пример #2
0
 public void Add(PluginConfigurationElement configElement)
 {
     BaseAdd(configElement);
     // Add custom code here.
 }
Пример #3
0
 public int IndexOf(PluginConfigurationElement configElement)
 {
     return BaseIndexOf(configElement);
 }