다음을 통해 공유


RazorParser 생성자

정의

오버로드

RazorParser(RazorParser)

지정된 RazorParser에서 parser의 새 인스턴스를 초기화합니다.

RazorParser(ParserBase, ParserBase, ITagHelperDescriptorResolver)

RazorParser의 새 인스턴스를 초기화합니다.

RazorParser(RazorParser)

지정된 RazorParser에서 parser의 새 인스턴스를 초기화합니다.

public:
 RazorParser(Microsoft::AspNetCore::Razor::Parser::RazorParser ^ parser);
public RazorParser (Microsoft.AspNetCore.Razor.Parser.RazorParser parser);
new Microsoft.AspNetCore.Razor.Parser.RazorParser : Microsoft.AspNetCore.Razor.Parser.RazorParser -> Microsoft.AspNetCore.Razor.Parser.RazorParser
Public Sub New (parser As RazorParser)

매개 변수

parser
RazorParser

RazorParser 값을 복사할 입니다.

적용 대상

RazorParser(ParserBase, ParserBase, ITagHelperDescriptorResolver)

RazorParser의 새 인스턴스를 초기화합니다.

public:
 RazorParser(Microsoft::AspNetCore::Razor::Parser::ParserBase ^ codeParser, Microsoft::AspNetCore::Razor::Parser::ParserBase ^ markupParser, Microsoft::AspNetCore::Razor::Compilation::TagHelpers::ITagHelperDescriptorResolver ^ tagHelperDescriptorResolver);
public RazorParser (Microsoft.AspNetCore.Razor.Parser.ParserBase codeParser, Microsoft.AspNetCore.Razor.Parser.ParserBase markupParser, Microsoft.AspNetCore.Razor.Compilation.TagHelpers.ITagHelperDescriptorResolver tagHelperDescriptorResolver);
new Microsoft.AspNetCore.Razor.Parser.RazorParser : Microsoft.AspNetCore.Razor.Parser.ParserBase * Microsoft.AspNetCore.Razor.Parser.ParserBase * Microsoft.AspNetCore.Razor.Compilation.TagHelpers.ITagHelperDescriptorResolver -> Microsoft.AspNetCore.Razor.Parser.RazorParser
Public Sub New (codeParser As ParserBase, markupParser As ParserBase, tagHelperDescriptorResolver As ITagHelperDescriptorResolver)

매개 변수

codeParser
ParserBase

ParserBase 코드 콘텐츠를 구문 분석하는 데 사용되는 입니다.

markupParser
ParserBase

ParserBase 태그 콘텐츠를 구문 분석하는 데 사용되는 입니다.

tagHelperDescriptorResolver
ITagHelperDescriptorResolver

ITagHelperDescriptorResolver resolve TagHelperDescriptor데 사용되는 입니다.

적용 대상