AuthorizationRuleCollection.Remove(AuthorizationRule) 方法

定义

从集合中移除 AuthorizationRule 对象。

public:
 void Remove(System::Web::Configuration::AuthorizationRule ^ rule);
public void Remove (System.Web.Configuration.AuthorizationRule rule);
member this.Remove : System.Web.Configuration.AuthorizationRule -> unit
Public Sub Remove (rule As AuthorizationRule)

参数

rule
AuthorizationRule

要移除的 AuthorizationRule 对象。

例外

集合中不存在传递的 AuthorizationRule 对象,元素已移除或集合为只读。

示例

下面的代码示例说明如何使用 Remove 方法。 请参阅类主题中的 AuthorizationSection 代码示例,了解如何获取集合。

// Remove the rule from the collection.
authorizationSection.Rules.Remove(authorizationRule);
' Remove the rule from the collection.
authorizationSection.Rules.Remove(authorizationRule)

注解

此方法将 remove 元素插入到配置文件的相应节中,用于在更高级别的配置文件中定义的任何元素。 如果元素在当前配置文件的相应部分中定义,则会从配置文件中删除其条目。 要删除的对象必须存在于集合中。

适用于