ParserResults Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
ParserResults(Block, IEnumerable<TagHelperDescriptor>, ErrorSink) |
Vytvoří instanci nové ParserResults instance. |
ParserResults(Boolean, Block, IEnumerable<TagHelperDescriptor>, ErrorSink) |
Vytvoří instanci nové ParserResults instance. |
ParserResults(Block, IEnumerable<TagHelperDescriptor>, ErrorSink)
Vytvoří instanci nové ParserResults instance.
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)
Parametry
- tagHelperDescriptors
- IEnumerable<TagHelperDescriptor>
S TagHelperDescriptor, které platí pro aktuální dokument Razor.
- errorSink
- ErrorSink
Používá ErrorSink se ke shromažďování RazorErrors nalezených při analýze aktuálního dokumentu Razor.
Platí pro
ParserResults(Boolean, Block, IEnumerable<TagHelperDescriptor>, ErrorSink)
Vytvoří instanci nové ParserResults instance.
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)
Parametry
- success
- Boolean
true
pokud byla analýza úspěšná, false
jinak.
- tagHelperDescriptors
- IEnumerable<TagHelperDescriptor>
S TagHelperDescriptor, které platí pro aktuální dokument Razor.
- errorSink
- ErrorSink
Používá ErrorSink se ke shromažďování RazorErrors nalezených při analýze aktuálního dokumentu Razor.