FormsAuthenticationUserCollection.RemoveAt(Int32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したインデックス位置にある FormsAuthenticationUser オブジェクトをコレクションから削除します。
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
パラメーター
- index
- Int32
コレクションから削除する FormsAuthenticationUser オブジェクトのインデックス。
例外
指定されたインデックスを持つ FormsAuthenticationUser オブジェクトがコレクションに存在しません。要素が既に削除されているか、またはコレクションが読み取り専用です。
例
Remove メソッドを使用するコード例を次に示します。
// Using method RemoveAt.
formsAuthenticationCredentials.Users.RemoveAt(0);
if (!authenticationSection.SectionInformation.IsLocked)
{
configuration.Save();
}
' Using method RemoveAt.
formsAuthenticationCredentials.Users.RemoveAt(0)
If Not authenticationSection.SectionInformation.IsLocked Then
configuration.Save()
End If
注釈
このメソッドは、 remove
上位レベルの構成ファイルで定義されている要素に対して、構成ファイルの適切なセクションに要素を挿入します。 要素が現在の構成ファイルの適切なセクションで定義されている場合、そのエントリは構成ファイルから削除されます。 削除するオブジェクトはコレクション内に存在する必要があります。