IRazorViewEngine 接口

定义

用于 IViewEngine 呈现使用 Razor 语法的页面的 。

public interface class IRazorViewEngine : Microsoft::AspNetCore::Mvc::ViewEngines::IViewEngine
public interface IRazorViewEngine : Microsoft.AspNetCore.Mvc.ViewEngines.IViewEngine
type IRazorViewEngine = interface
    interface IViewEngine
Public Interface IRazorViewEngine
Implements IViewEngine
派生
实现

方法

FindPage(ActionContext, String)

使用 中的context视图位置和信息查找具有给定 pageName 的页面。

FindView(ActionContext, String, Boolean)

使用 中的视图位置和信息查找具有给定 viewNamecontext视图。

(继承自 IViewEngine)
GetAbsolutePath(String, String)

将给定 pagePath 的 转换为相对于 executingFilePath 的绝对值,除非 pagePath 已是绝对值。

GetPage(String, String)

获取具有给定 pagePath的 的页(除非executingFilePathpagePath已是绝对的)。

GetView(String, String, Boolean)

获取具有给定 viewPath的视图,相对于 executingFilePath (除非 viewPath 已为绝对值)。

(继承自 IViewEngine)

适用于