Sdílet prostřednictvím


RazorPageResult Konstruktory

Definice

Přetížení

RazorPageResult(String, IRazorPage)

Inicializuje novou instanci pro RazorPageResult úspěšné zjišťování.

RazorPageResult(String, IEnumerable<String>)

Inicializuje novou instanci pro RazorPageResult neúspěšné zjišťování.

RazorPageResult(String, IRazorPage)

Zdroj:
RazorPageResult.cs
Zdroj:
RazorPageResult.cs
Zdroj:
RazorPageResult.cs

Inicializuje novou instanci pro RazorPageResult úspěšné zjišťování.

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)

Parametry

name
String

Název stránky, která byla nalezena.

page
IRazorPage

Umístěný soubor IRazorPage.

Platí pro

RazorPageResult(String, IEnumerable<String>)

Zdroj:
RazorPageResult.cs
Zdroj:
RazorPageResult.cs
Zdroj:
RazorPageResult.cs

Inicializuje novou instanci pro RazorPageResult neúspěšné zjišťování.

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))

Parametry

name
String

Název stránky, která nebyla nalezena.

searchedLocations
IEnumerable<String>

Umístění, která byla prohledána.

Platí pro