ParserErrorCollection Constructors

Definition

Initializes a new instance of the ParserErrorCollection class.

Overloads

ParserErrorCollection()

Initializes a new instance of the ParserErrorCollection class.

ParserErrorCollection(ParserError[])

Initializes a new instance of the ParserErrorCollection class.

ParserErrorCollection()

Initializes a new instance of the ParserErrorCollection class.

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

Examples

The following code example demonstrates how to initialize an instance of the ParserErrorCollection class.

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

Applies to

ParserErrorCollection(ParserError[])

Initializes a new instance of the ParserErrorCollection class.

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())

Parameters

value
ParserError[]

An array of type ParserError that specifies the errors to add to the collection.

Remarks

The ParserErrorCollection.ParserErrorCollection constructor adds an array of ParserError objects to the collection.

Applies to