Sdílet prostřednictvím


ParserErrorCollection Konstruktory

Definice

Inicializuje novou instanci ParserErrorCollection třídy.

Přetížení

ParserErrorCollection()

Inicializuje novou instanci ParserErrorCollection třídy.

ParserErrorCollection(ParserError[])

Inicializuje novou instanci ParserErrorCollection třídy.

ParserErrorCollection()

Inicializuje novou instanci ParserErrorCollection třídy.

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

Příklady

Následující příklad kódu ukazuje, jak inicializovat instanci ParserErrorCollection třídy.

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

Platí pro

ParserErrorCollection(ParserError[])

Inicializuje novou instanci ParserErrorCollection třídy.

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

Parametry

value
ParserError[]

Pole typu ParserError , které určuje chyby, které se mají přidat do kolekce.

Poznámky

Konstruktor ParserErrorCollection.ParserErrorCollection přidá do kolekce pole ParserError objektů.

Platí pro