다음을 통해 공유


ParserResults 생성자

정의

오버로드

ParserResults(Block, IEnumerable<TagHelperDescriptor>, ErrorSink)

ParserResults instance 인스턴스화합니다.

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

ParserResults instance 인스턴스화합니다.

ParserResults(Block, IEnumerable<TagHelperDescriptor>, ErrorSink)

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)

매개 변수

document
Block

Block 구문 트리의 입니다.

tagHelperDescriptors
IEnumerable<TagHelperDescriptor>

TagHelperDescriptor현재 Razor 문서에 적용되는 입니다.

errorSink
ErrorSink

ErrorSink 현재 Razor 문서를 구문 분석할 때 발생하는 를 수집하는 RazorError데 사용되는 입니다.

적용 대상

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

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)

매개 변수

success
Boolean

true 구문 분석이 성공하면 이고, false 그렇지 않으면 입니다.

document
Block

Block 구문 트리의 입니다.

tagHelperDescriptors
IEnumerable<TagHelperDescriptor>

TagHelperDescriptor현재 Razor 문서에 적용되는 입니다.

errorSink
ErrorSink

ErrorSink 현재 Razor 문서를 구문 분석할 때 발생하는 를 수집하는 RazorError데 사용되는 입니다.

적용 대상