ParserErrorCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.