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 的別名。
範例
下列程式碼範例會 ClientTarget 從 ClientTargetCollection 集合中移除 物件。
如需如何取得集合的資訊,請參閱類別概觀中的 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。
範例
下列程式碼範例會 ClientTarget 從 ClientTargetCollection 集合中移除 物件。
如需如何取得集合的資訊,請參閱類別概觀中的 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
,但不會刪除它。