ParserErrorCollection.Insert(Int32, ParserError) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このコレクション内の指定したインデックス位置に、指定した ParserError オブジェクトを挿入します。
public:
void Insert(int index, System::Web::ParserError ^ value);
public void Insert (int index, System.Web.ParserError value);
member this.Insert : int * System.Web.ParserError -> unit
Public Sub Insert (index As Integer, value As ParserError)
パラメーター
- index
- Int32
ParserError の挿入位置となる、コレクション内のインデックス。
- value
- ParserError
コレクションに挿入する ParserError オブジェクト。
例
次のコード例は、コレクション内の指定したインデックスにオブジェクトを挿入 ParserError する方法を ParserErrorCollection 示しています。
// Insert a ParserError at index 0 of the collection.
ParserError error = new ParserError("Error", "Path", 1);
collection.Insert(0, error);
// Remove the specified ParserError from the collection.
collection.Remove(error);
' Insert a ParserError at index 0 of the collection.
Dim [error] As New ParserError("Error", "Path", 1)
collection.Insert(0, [error])
' Remove the specified ParserError from the collection.
collection.Remove([error])
注釈
コレクション内の特定の Insert インデックスに既存 ParserError のオブジェクトを挿入するには、このメソッドを使用します。
同じ ParserError オブジェクトをコレクションに複数回追加することはできません。 コレクションに既にあるメソッドを Insert 使用してメソッドを ParserError 呼び出すと、挿入は失敗します。 挿入の前に Contains メソッドを使用して、特定のオブジェクト ParserError がコレクション内に既にあるかどうかを判断します。 コレクション内の位置を ParserError 変更するには、まずメソッドを使用して Remove 削除してから、目的のインデックス Insertに挿入する必要があります。