ClientTargetCollection.RemoveAt(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
具有指定集合索引的 ClientTarget 对象。
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
参数
- index
- Int32
要移除的 ClientTarget 的集合索引。
示例
下面的代码示例从ClientTargetCollection集合中删除ClientTarget对象。
有关如何获取集合的信息,请参阅类概述中的 ClientTargetCollection 代码示例。
// Remove the client target at the
// specified index from the collection.
clientTargets.RemoveAt(0);
// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
configuration.Save();
' Remove the client target at the
' specified index from the collection.
clientTargets.RemoveAt(0)
' Update the configuration file.
If Not clientTargetSection.IsReadOnly() Then
configuration.Save()
End If
注解
该方法 RemoveAt 删除 add
当前层次结构级别的节中的 clientTarget
元素,并插入元素 remove
。 该 remove
元素有效地删除了对 add
层次结构中较高级别父配置文件中定义的元素的引用,但不删除它。