ConfigurationElementCollection.BaseRemove Method

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
)
Not applicable.

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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: