ParserErrorCollection コンストラクター

定義

ParserErrorCollection クラスの新しいインスタンスを初期化します。

オーバーロード

ParserErrorCollection()

ParserErrorCollection クラスの新しいインスタンスを初期化します。

ParserErrorCollection(ParserError[])

ParserErrorCollection クラスの新しいインスタンスを初期化します。

ParserErrorCollection()

ParserErrorCollection クラスの新しいインスタンスを初期化します。

public:
 ParserErrorCollection();
public ParserErrorCollection ();
Public Sub New ()

次のコード例は、クラスのインスタンスを初期化する方法を ParserErrorCollection 示しています。

// Create an empty ParserErrorCollection.
ParserErrorCollection collection = new ParserErrorCollection();
' Create an empty ParserErrorCollection.
Dim collection As New ParserErrorCollection()

適用対象

ParserErrorCollection(ParserError[])

ParserErrorCollection クラスの新しいインスタンスを初期化します。

public:
 ParserErrorCollection(cli::array <System::Web::ParserError ^> ^ value);
public ParserErrorCollection (System.Web.ParserError[] value);
new System.Web.ParserErrorCollection : System.Web.ParserError[] -> System.Web.ParserErrorCollection
Public Sub New (value As ParserError())

パラメーター

value
ParserError[]

コレクションに追加するエラーを指定する ParserError 型の配列。

注釈

コンストラクターは ParserErrorCollection.ParserErrorCollection 、オブジェクトの ParserError 配列をコレクションに追加します。

適用対象