Was this page helpful?
Your feedback about this content is important. Let us know what you think.
Additional feedback?
1500 characters remaining
Export (0) Print
Expand All

ConfigurationElementCollection.BaseRemove Method

Removes a ConfigurationElement from the collection.

Namespace:  System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

protected internal void BaseRemove(
	Object key
)

Parameters

key
Type: System.Object

The key of the ConfigurationElement to remove.

ExceptionCondition
Exception

No ConfigurationElement with the specified key exists in the collection, the element has already been removed, or the element cannot be removed because the value of its Type is not AddRemoveClearMap.

The BaseRemove method inserts a <remove> directive into the configuration file for the ConfigurationElement with the specified key.

The following code example shows how to call the BaseRemove method.

public void Remove(UrlConfigElement url)
{
    if (BaseIndexOf(url) >= 0)
    {
        BaseRemove(url.Name);
        // Your custom code goes here.
        Console.WriteLine("UrlsCollection: {0}", "Removed collection element!");
    }
}

.NET Framework

Supported in: 4.6, 4.5, 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Show:
© 2015 Microsoft