ParserErrorCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
解析中に検出されたパーサー エラーのセットを管理します。 このクラスは継承できません。
public ref class ParserErrorCollection sealed : System::Collections::CollectionBase
[System.Serializable]
public sealed class ParserErrorCollection : System.Collections.CollectionBase
[<System.Serializable>]
type ParserErrorCollection = class
inherit CollectionBase
Public NotInheritable Class ParserErrorCollection
Inherits CollectionBase
- 継承
- 属性
例
次のコード例は、 ParserErrorCollection メソッドの使用方法を示しています。
// Create an empty ParserErrorCollection.
ParserErrorCollection collection = new ParserErrorCollection();
// Add a ParserError to the collection.
collection.Add(new ParserError("ErrorName", "Path", 1));
// Add an array of ParserError objects to the collection.
ParserError[] errors =
{ new ParserError("Error 2", "Path", 1),
new ParserError("Error 3", "Path", 1) };
collection.AddRange(errors);
// Add a collection of ParserError objects to the collection.
ParserErrorCollection errorsCollection = new ParserErrorCollection();
errorsCollection.Add(new ParserError("Error", "Path", 1));
errorsCollection.Add(new ParserError("Error", "Path", 1));
collection.AddRange(errorsCollection);
// Test for the presence of a ParserError in the
// collection, and retrieve its index if it is found.
ParserError testError = new ParserError("Error", "Path", 1);
int itemIndex = -1;
if (collection.Contains(testError))
itemIndex = collection.IndexOf(testError);
// Copy the contents of the collection to a
// compatible array, starting at index 0 of the
// destination array.
ParserError[] errorsToSort = new ParserError[5];
collection.CopyTo(errorsToSort, 0);
// Retrieve the count of the items in the collection.
int collectionCount = collection.Count;
// 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);
// Remove the ParserError at index 0.
collection.RemoveAt(0);
' Create an empty ParserErrorCollection.
Dim collection As New ParserErrorCollection()
' Add a ParserError to the collection.
collection.Add(New ParserError("ErrorName", "Path", 1))
' Add an array of ParserError objects to the collection.
Dim errors As ParserError() = _
{New ParserError("Error 2", "Path", 1), _
New ParserError("Error 3", "Path", 1)}
collection.AddRange(errors)
' Ads a collection of ParserError objects to the collection.
Dim errorsCollection As New ParserErrorCollection()
errorsCollection.Add(New ParserError("Error", "Path", 1))
errorsCollection.Add(New ParserError("Error", "Path", 1))
collection.AddRange(errorsCollection)
' Test for the presence of a ParserError in the
' collection, and retrieve its index if it is found.
Dim testError As New ParserError("Error", "Path", 1)
Dim itemIndex As Integer = -1
If collection.Contains(testError) Then
itemIndex = collection.IndexOf(testError)
End If
' Copy the contents of the collection to a
' compatible array, starting at index 0 of the
' destination array.
Dim errorsToSort(5) As ParserError
collection.CopyTo(errorsToSort, 0)
' Retrieve the count of the items in the collection.
Dim collectionCount As Integer = collection.Count
' 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])
' Remove the ParserError at index 0.
collection.RemoveAt(0)
注釈
ParserErrorCollection クラスには、ParserError オブジェクトのコレクションを管理するために使用できるメソッドとプロパティが用意されています。 たとえば、カスタム BuildProvider オブジェクトを使用して、解析中にキャッチされたすべての解析例外を報告するときに、解析時に一連のパーサー エラーをコレクションに追加できます。
パーサー エラーをコレクションに追加、削除、またはコレクション内で検索するには、次のコマンドを使用します。
コレクションに単一のParserError オブジェクトを追加するAdd メソッド。
コレクションに複数のParserError オブジェクトを追加するAddRangeメソッド。
ParserErrorCollection インデクサーである Insert メソッドと Item[] プロパティの両方で、指定したインデックス位置にあるコレクションに 1 つのParserError オブジェクトを追加します。
さらに、 ParserErrorCollection クラスを使用して、次の操作を行うことができます。
Remove メソッドParserErrorオブジェクトを削除します。
Contains メソッドを使用して、特定のParserErrorがコレクション内にあるかどうかを確認します。
IndexOf メソッドを使用して、ParserError オブジェクトがコレクション内のどこにあるかを検索します。
コンストラクター
| 名前 | 説明 |
|---|---|
| ParserErrorCollection() |
ParserErrorCollection クラスの新しいインスタンスを初期化します。 |
| ParserErrorCollection(ParserError[]) |
ParserErrorCollection クラスの新しいインスタンスを初期化します。 |
プロパティ
| 名前 | 説明 |
|---|---|
| Capacity |
CollectionBaseに含めることができる要素の数を取得または設定します。 (継承元 CollectionBase) |
| Count |
CollectionBase インスタンスに含まれる要素の数を取得します。 このプロパティはオーバーライドできません。 (継承元 CollectionBase) |
| InnerList |
ArrayList インスタンス内の要素の一覧を含むCollectionBaseを取得します。 (継承元 CollectionBase) |
| Item[Int32] |
コレクション内の指定したインデックス位置にある ParserError オブジェクトを取得または設定します。 |
| List |
IList インスタンス内の要素の一覧を含むCollectionBaseを取得します。 (継承元 CollectionBase) |
メソッド
| 名前 | 説明 |
|---|---|
| Add(ParserError) |
コレクションに値を追加します。 |
| AddRange(ParserError[]) |
ParserError オブジェクトの配列をコレクションに追加します。 |
| AddRange(ParserErrorCollection) |
既存の ParserErrorCollection 内のオブジェクトをコレクションに追加します。 |
| Clear() |
CollectionBase インスタンスからすべてのオブジェクトを削除します。 このメソッドはオーバーライドできません。 (継承元 CollectionBase) |
| Contains(ParserError) |
ParserError オブジェクトがコレクション内にあるかどうかを判断します。 |
| CopyTo(ParserError[], Int32) |
コレクション内の ParserError オブジェクトを、ターゲット配列の指定したインデックスから始まる互換性のある 1 次元配列にコピーします。 |
| Equals(Object) |
指定したオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
| GetEnumerator() |
CollectionBase インスタンスを反復処理する列挙子を返します。 (継承元 CollectionBase) |
| GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
| GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
| IndexOf(ParserError) |
コレクション内の指定した ParserError オブジェクトのインデックスを取得します。 |
| Insert(Int32, ParserError) |
指定した ParserError オブジェクトをコレクション内の指定したインデックス位置に挿入します。 |
| MemberwiseClone() |
現在の Objectの簡易コピーを作成します。 (継承元 Object) |
| OnClear() |
CollectionBase インスタンスの内容をクリアするときに、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| OnClearComplete() |
CollectionBase インスタンスの内容をクリアした後、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| OnInsert(Int32, Object) |
CollectionBase インスタンスに新しい要素を挿入する前に、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| OnInsertComplete(Int32, Object) |
CollectionBase インスタンスに新しい要素を挿入した後、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| OnRemove(Int32, Object) |
CollectionBase インスタンスから要素を削除するときに、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| OnRemoveComplete(Int32, Object) |
CollectionBase インスタンスから要素を削除した後、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| OnSet(Int32, Object, Object) |
CollectionBase インスタンスで値を設定する前に、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| OnSetComplete(Int32, Object, Object) |
CollectionBase インスタンスで値を設定した後、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| OnValidate(Object) |
値を検証するときに、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
| Remove(ParserError) |
指定した ParserError オブジェクトをコレクションから削除します。 |
| RemoveAt(Int32) |
CollectionBase インスタンスの指定したインデックス位置にある要素を削除します。 このメソッドはオーバーライドできません。 (継承元 CollectionBase) |
| ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
明示的なインターフェイスの実装
| 名前 | 説明 |
|---|---|
| ICollection.CopyTo(Array, Int32) |
ターゲット配列の指定したインデックスから始まる互換性のある 1 次元CollectionBaseに、Array全体をコピーします。 (継承元 CollectionBase) |
| ICollection.IsSynchronized |
CollectionBaseへのアクセスが同期されているかどうかを示す値を取得します (スレッド セーフ)。 (継承元 CollectionBase) |
| ICollection.SyncRoot |
CollectionBaseへのアクセスを同期するために使用できるオブジェクトを取得します。 (継承元 CollectionBase) |
| IList.Add(Object) |
CollectionBaseの末尾にオブジェクトを追加します。 (継承元 CollectionBase) |
| IList.Contains(Object) |
CollectionBaseに特定の要素が含まれているかどうかを判断します。 (継承元 CollectionBase) |
| IList.IndexOf(Object) |
指定した Object を検索し、 CollectionBase全体で最初に見つかった位置の 0 から始まるインデックスを返します。 (継承元 CollectionBase) |
| IList.Insert(Int32, Object) |
指定したインデックス位置にある CollectionBase に要素を挿入します。 (継承元 CollectionBase) |
| IList.IsFixedSize |
CollectionBaseに固定サイズがあるかどうかを示す値を取得します。 (継承元 CollectionBase) |
| IList.IsReadOnly |
CollectionBaseが読み取り専用かどうかを示す値を取得します。 (継承元 CollectionBase) |
| IList.Item[Int32] |
指定したインデックス位置にある要素を取得または設定します。 (継承元 CollectionBase) |
| IList.Remove(Object) |
特定のオブジェクトの最初の出現箇所を CollectionBaseから削除します。 (継承元 CollectionBase) |
拡張メソッド
| 名前 | 説明 |
|---|---|
| AsParallel(IEnumerable) |
クエリの並列化を有効にします。 |
| AsQueryable(IEnumerable) |
IEnumerable を IQueryableに変換します。 |
| Cast<TResult>(IEnumerable) |
IEnumerable の要素を指定した型にキャストします。 |
| OfType<TResult>(IEnumerable) |
指定した型に基づいて、IEnumerable の要素をフィルター処理します。 |