ConfigurationElementCollection.BaseRemove(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中删除 ConfigurationElement 对象。
protected:
void BaseRemove(System::Object ^ key);
protected public:
void BaseRemove(System::Object ^ key);
protected void BaseRemove (object key);
protected internal void BaseRemove (object key);
member this.BaseRemove : obj -> unit
Protected Sub BaseRemove (key As Object)
Protected Friend Sub BaseRemove (key As Object)
参数
- key
- Object
要移除的 ConfigurationElement 的键。
例外
集合中不存在具有指定键的 ConfigurationElement,该元素已被移除,或者由于该元素的 Type 值不是 AddRemoveClearMap,因此无法移除该元素。
示例
下面的代码示例演示如何调用 BaseRemove 方法。
public void Remove(UrlConfigElement url)
{
if (BaseIndexOf(url) >= 0)
{
BaseRemove(url.Name);
// Your custom code goes here.
Console.WriteLine("UrlsCollection: {0}", "Removed collection element!");
}
}
Public Sub Remove(ByVal url As UrlConfigElement)
If BaseIndexOf(url) >= 0 Then
BaseRemove(url.Name)
' Your custom code goes here.
Console.WriteLine("UrlsCollection: {0}", "Removed collection element!")
End If
End Sub
注解
方法 BaseRemove 使用指定键将 指令插入 <remove>
到 的配置文件 ConfigurationElement 中。