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 構成ファイルに ディレクティブを挿入します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET