다음을 통해 공유


RazorPageResult 생성자

정의

오버로드

RazorPageResult(String, IRazorPage)

성공적인 검색을 위해 의 RazorPageResult 새 instance 초기화합니다.

RazorPageResult(String, IEnumerable<String>)

실패한 검색에 대한 의 RazorPageResult 새 instance 초기화합니다.

RazorPageResult(String, IRazorPage)

Source:
RazorPageResult.cs
Source:
RazorPageResult.cs
Source:
RazorPageResult.cs

성공적인 검색을 위해 의 RazorPageResult 새 instance 초기화합니다.

public:
 RazorPageResult(System::String ^ name, Microsoft::AspNetCore::Mvc::Razor::IRazorPage ^ page);
public RazorPageResult (string name, Microsoft.AspNetCore.Mvc.Razor.IRazorPage page);
new Microsoft.AspNetCore.Mvc.Razor.RazorPageResult : string * Microsoft.AspNetCore.Mvc.Razor.IRazorPage -> Microsoft.AspNetCore.Mvc.Razor.RazorPageResult
Public Sub New (name As String, page As IRazorPage)

매개 변수

name
String

발견된 페이지의 이름입니다.

page
IRazorPage

찾은 입니다 IRazorPage.

적용 대상

RazorPageResult(String, IEnumerable<String>)

Source:
RazorPageResult.cs
Source:
RazorPageResult.cs
Source:
RazorPageResult.cs

실패한 검색에 대한 의 RazorPageResult 새 instance 초기화합니다.

public:
 RazorPageResult(System::String ^ name, System::Collections::Generic::IEnumerable<System::String ^> ^ searchedLocations);
public RazorPageResult (string name, System.Collections.Generic.IEnumerable<string> searchedLocations);
new Microsoft.AspNetCore.Mvc.Razor.RazorPageResult : string * seq<string> -> Microsoft.AspNetCore.Mvc.Razor.RazorPageResult
Public Sub New (name As String, searchedLocations As IEnumerable(Of String))

매개 변수

name
String

찾을 수 없는 페이지의 이름입니다.

searchedLocations
IEnumerable<String>

검색된 위치입니다.

적용 대상