ClientTargetCollection.Remove メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ClientTarget オブジェクトをコレクションから削除します。
オーバーロード
Remove(String) |
指定したエイリアスの ClientTarget オブジェクトをコレクションから削除します。 |
Remove(ClientTarget) |
指定した ClientTarget オブジェクトをコレクションから削除します。 |
Remove(String)
指定したエイリアスの ClientTarget オブジェクトをコレクションから削除します。
public:
void Remove(System::String ^ name);
public void Remove (string name);
member this.Remove : string -> unit
Public Sub Remove (name As String)
パラメーター
- name
- String
削除する ClientTarget のエイリアス。
例
次のコード例では、コレクションからオブジェクトをClientTargetClientTargetCollection削除します。
コレクションを取得する方法については、クラスの概要のコード例を ClientTargetCollection 参照してください。
// Remove the client target with the
// specified alias from the collection
// (if exists).
clientTargets.Remove("my alias");
// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
configuration.Save();
' Remove the client target with the
' specified alias from the collection
' (if exists).
clientTargets.Remove("my alias")
' Update the configuration file.
If Not clientTargetSection.IsReadOnly() Then
configuration.Save()
End If
注釈
このメソッドは Remove 、現在の add
階層レベルのセクション内 clientTarget
の要素を削除し、要素を remove
挿入します。 この要素は remove
、階層内の上位レベルの親構成ファイルで定義されている要素への add
参照を実質的に削除しますが、削除しません。
こちらもご覧ください
適用対象
Remove(ClientTarget)
指定した ClientTarget オブジェクトをコレクションから削除します。
public:
void Remove(System::Web::Configuration::ClientTarget ^ clientTarget);
public void Remove (System.Web.Configuration.ClientTarget clientTarget);
member this.Remove : System.Web.Configuration.ClientTarget -> unit
Public Sub Remove (clientTarget As ClientTarget)
パラメーター
- clientTarget
- ClientTarget
削除する ClientTarget。
例
次のコード例では、コレクションからオブジェクトをClientTargetClientTargetCollection削除します。
コレクションを取得する方法については、クラスの概要のコード例を ClientTargetCollection 参照してください。
// Create a ClientTarget object.
clientTarget = new ClientTarget(
"my alias", "My User Agent");
// Remove it from the collection
// (if exists).
clientTargets.Remove(clientTarget);
// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
configuration.Save();
' Create a ClientTarget object.
clientTarget = New ClientTarget( _
"my alias", "My User Agent")
' Remove it from the collection
' (if exists).
clientTargets.Remove(clientTarget)
' Update the configuration file.
If Not clientTargetSection.IsReadOnly() Then
configuration.Save()
End If
注釈
このメソッドは Remove 、現在の add
階層レベルのセクション内 clientTarget
の要素を削除し、要素を remove
挿入します。 この要素は remove
、階層内の上位レベルの親構成ファイルで定義されている要素への add
参照を実質的に削除しますが、削除しません。