ParserResults 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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)
参数
- 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
否则为 。
- tagHelperDescriptors
- IEnumerable<TagHelperDescriptor>
TagHelperDescriptor适用于当前 Razor 文档的 。
- errorSink
- ErrorSink
用于 ErrorSink 收集 RazorError分析当前 Razor 文档时遇到的 的 。