ParserResults Konstruktory

Definice

Přetížení

ParserResults(Block, IList<RazorError>)

Tento typ/člen podporuje infrastrukturu rozhraní .NET Framework a není určen k použití přímo z vašeho kódu. Inicializuje novou instanci ParserResults třídy.

ParserResults(Boolean, Block, IList<RazorError>)

Tento typ/člen podporuje infrastrukturu rozhraní .NET Framework a není určen k použití přímo z vašeho kódu. Inicializuje novou instanci ParserResults třídy.

ParserResults(Block, IList<RazorError>)

Tento typ/člen podporuje infrastrukturu rozhraní .NET Framework a není určen k použití přímo z vašeho kódu. Inicializuje novou instanci ParserResults třídy.

public ParserResults (System.Web.Razor.Parser.SyntaxTree.Block document, System.Collections.Generic.IList<System.Web.Razor.Parser.SyntaxTree.RazorError> parserErrors);
new System.Web.Razor.ParserResults : System.Web.Razor.Parser.SyntaxTree.Block * System.Collections.Generic.IList<System.Web.Razor.Parser.SyntaxTree.RazorError> -> System.Web.Razor.ParserResults
Public Sub New (document As Block, parserErrors As IList(Of RazorError))

Parametry

document
Block

Kořenový uzel ve stromu syntaxe dokumentu.

parserErrors
IList<RazorError>

Seznam chyb, ke kterým došlo během analýzy.

Platí pro

ParserResults(Boolean, Block, IList<RazorError>)

Tento typ/člen podporuje infrastrukturu rozhraní .NET Framework a není určen k použití přímo z vašeho kódu. Inicializuje novou instanci ParserResults třídy.

protected ParserResults (bool success, System.Web.Razor.Parser.SyntaxTree.Block document, System.Collections.Generic.IList<System.Web.Razor.Parser.SyntaxTree.RazorError> errors);
new System.Web.Razor.ParserResults : bool * System.Web.Razor.Parser.SyntaxTree.Block * System.Collections.Generic.IList<System.Web.Razor.Parser.SyntaxTree.RazorError> -> System.Web.Razor.ParserResults
Protected Sub New (success As Boolean, document As Block, errors As IList(Of RazorError))

Parametry

success
Boolean

true, pokud parsování bylo úspěšné; jinak nepravda.

document
Block

Kořenový uzel ve stromu syntaxe dokumentu.

errors
IList<RazorError>

Seznam chyb, ke kterým došlo během analýzy.

Platí pro