Condividi tramite


ParserResults Costruttori

Definizione

Overload

ParserResults(Block, IEnumerable<TagHelperDescriptor>, ErrorSink)

Crea un'istanza di una nuova ParserResults istanza.

ParserResults(Boolean, Block, IEnumerable<TagHelperDescriptor>, ErrorSink)

Crea un'istanza di una nuova ParserResults istanza.

ParserResults(Block, IEnumerable<TagHelperDescriptor>, ErrorSink)

Crea un'istanza di una nuova ParserResults istanza.

public:
 ParserResults(Microsoft::AspNetCore::Razor::Parser::SyntaxTree::Block ^ document, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Razor::Compilation::TagHelpers::TagHelperDescriptor ^> ^ tagHelperDescriptors, Microsoft::AspNetCore::Razor::ErrorSink ^ errorSink);
public ParserResults (Microsoft.AspNetCore.Razor.Parser.SyntaxTree.Block document, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor> tagHelperDescriptors, Microsoft.AspNetCore.Razor.ErrorSink errorSink);
new Microsoft.AspNetCore.Razor.ParserResults : Microsoft.AspNetCore.Razor.Parser.SyntaxTree.Block * seq<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor> * Microsoft.AspNetCore.Razor.ErrorSink -> Microsoft.AspNetCore.Razor.ParserResults
Public Sub New (document As Block, tagHelperDescriptors As IEnumerable(Of TagHelperDescriptor), errorSink As ErrorSink)

Parametri

document
Block

Oggetto Block per l'albero della sintassi.

tagHelperDescriptors
IEnumerable<TagHelperDescriptor>

Oggetto TagHelperDescriptorche si applica al documento Razor corrente.

errorSink
ErrorSink

Oggetto ErrorSink utilizzato per raccogliere i dati RazorErrorrilevati durante l'analisi del documento Razor corrente.

Si applica a

ParserResults(Boolean, Block, IEnumerable<TagHelperDescriptor>, ErrorSink)

Crea un'istanza di una nuova ParserResults istanza.

protected:
 ParserResults(bool success, Microsoft::AspNetCore::Razor::Parser::SyntaxTree::Block ^ document, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Razor::Compilation::TagHelpers::TagHelperDescriptor ^> ^ tagHelperDescriptors, Microsoft::AspNetCore::Razor::ErrorSink ^ errorSink);
protected ParserResults (bool success, Microsoft.AspNetCore.Razor.Parser.SyntaxTree.Block document, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor> tagHelperDescriptors, Microsoft.AspNetCore.Razor.ErrorSink errorSink);
new Microsoft.AspNetCore.Razor.ParserResults : bool * Microsoft.AspNetCore.Razor.Parser.SyntaxTree.Block * seq<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor> * Microsoft.AspNetCore.Razor.ErrorSink -> Microsoft.AspNetCore.Razor.ParserResults
Protected Sub New (success As Boolean, document As Block, tagHelperDescriptors As IEnumerable(Of TagHelperDescriptor), errorSink As ErrorSink)

Parametri

success
Boolean

true se l'analisi ha avuto esito positivo, false in caso contrario.

document
Block

Oggetto Block per l'albero della sintassi.

tagHelperDescriptors
IEnumerable<TagHelperDescriptor>

Oggetto TagHelperDescriptorche si applica al documento Razor corrente.

errorSink
ErrorSink

Oggetto ErrorSink utilizzato per raccogliere i dati RazorErrorrilevati durante l'analisi del documento Razor corrente.

Si applica a