次の方法で共有


HttpModuleActionCollection.RemoveAt(Int32) メソッド

定義

指定したインデックス位置にある HttpModuleAction モジュールをコレクションから削除します。

public:
 void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

パラメーター

index
Int32

削除する HttpModuleAction モジュールのインデックス。

例外

指定されたインデックスを持つ HttpModuleAction オブジェクトがコレクションに存在しません。要素が既に削除されているか、またはコレクションが読み取り専用です。

次の例は、コレクションからモジュールを削除する HttpModuleAction 方法を示しています。


// Remove the module from the collection.
if (!httpModulesSection.SectionInformation.IsLocked)
{
    modulesCollection.RemoveAt(0);
    configuration.Save();
}
' Remove the module from the collection.
If Not httpModulesSection.SectionInformation.IsLocked Then
    modulesCollection.RemoveAt(0)
    configuration.Save()
End If

注釈

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

適用対象