AuthorizationRuleCollection.RemoveAt(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除位于指定索引位置的 AuthorizationRule 对象。
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
参数
- index
- Int32
要移除的 AuthorizationRule 的索引位置。
例外
该集合中没有带指定索引的 AuthorizationRule 对象,该元素已被移除或者该集合为只读。
示例
下面的代码示例说明如何使用 RemoveAt 方法。 请参阅类主题中的 AuthorizationSection 代码示例,了解如何获取集合。
// Using the AuthorizationRuleCollection RemoveAt method.
authorizationRuleCollection.RemoveAt(0);
' Using the AuthorizationRuleCollection RemoveAt method.
authorizationRuleCollection.RemoveAt(0)
注解
此方法将 remove
元素插入到配置文件的相应节中,用于在更高级别的配置文件中定义的任何元素。 如果元素在当前配置文件的相应部分中定义,则会从配置文件中删除其条目。 要删除的对象必须存在于集合中。