ParserResults 构造函数

定义

重载

ParserResults(Block, IEnumerable<TagHelperDescriptor>, ErrorSink)

实例化新 ParserResults 实例。

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

实例化新 ParserResults 实例。

ParserResults(Block, IEnumerable<TagHelperDescriptor>, ErrorSink)

实例化新 ParserResults 实例。

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)

参数

document
Block

Block语法树的 。

tagHelperDescriptors
IEnumerable<TagHelperDescriptor>

TagHelperDescriptor适用于当前 Razor 文档的 。

errorSink
ErrorSink

用于 ErrorSink 收集 RazorError分析当前 Razor 文档时遇到的 的 。

适用于

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

实例化新 ParserResults 实例。

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)

参数

success
Boolean

true 如果分析成功,则为 ; false 否则为 。

document
Block

Block语法树的 。

tagHelperDescriptors
IEnumerable<TagHelperDescriptor>

TagHelperDescriptor适用于当前 Razor 文档的 。

errorSink
ErrorSink

用于 ErrorSink 收集 RazorError分析当前 Razor 文档时遇到的 的 。

适用于