ConfigurationElementCollection.BaseRemove Method

Note: This method is new in the .NET Framework version 2.0.

Removes a ConfigurationElement from the collection.

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

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

Me.BaseRemove(key)
protected void BaseRemove (
	Object key
)
protected internal function BaseRemove (
	key : Object
)

Parameters

key

The key of the ConfigurationElement to remove.

Exception typeCondition

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 Overloads Sub Remove( _
ByVal url As UrlConfigElement)
    If BaseIndexOf(url) >= 0 Then
        BaseRemove(url.Name)
    End If

End Sub 'Remove

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

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

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: