.NET Framework Class Library
ConfigurationElementCollection..::.BaseRemove Method

Updated: November 2007

Removes a ConfigurationElement from the collection.

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

Visual Basic (Declaration)
Protected Friend Sub BaseRemove ( _
    key As Object _
)
Visual Basic (Usage)
Dim key As Object

Me.BaseRemove(key)
C#
protected internal void BaseRemove(
    Object key
)
Visual C++
protected public:
void BaseRemove(
    Object^ key
)
J#
protected void BaseRemove(
    Object key
)
JScript
protected internal function BaseRemove(
    key : Object
)

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.

Visual Basic
Public Overloads Sub Remove( _
ByVal url As UrlConfigElement)
    If BaseIndexOf(url) >= 0 Then
        BaseRemove(url.Name)
    End If

End Sub 'Remove

C#
public void Remove(UrlConfigElement url)
{
    if (BaseIndexOf(url) >= 0)
        BaseRemove(url.Name);
}

Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Page view tracker