AuthorizationRuleCollection.RemoveAt(Int32) メソッド

定義

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

適用対象