次の方法で共有


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>

現在の TagHelperDescriptorRazor ドキュメントに適用される 。

errorSink
ErrorSink

現在の ErrorSink Razor ドキュメントを解析するときに検出された を収集 RazorErrorするために使用される 。

適用対象

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>

現在の TagHelperDescriptorRazor ドキュメントに適用される 。

errorSink
ErrorSink

現在の ErrorSink Razor ドキュメントを解析するときに検出された を収集 RazorErrorするために使用される 。

適用対象