次の方法で共有


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 上位レベルの構成ファイルで定義されている要素に対して、構成ファイルの適切なセクションに要素を挿入します。 要素が現在の構成ファイルの適切なセクションで定義されている場合、そのエントリは構成ファイルから削除されます。 削除するオブジェクトは、コレクション内に存在する必要があります。

適用対象