共用方式為


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)

使用 中的檢視位置和資訊,尋找具有指定 viewName 之 的 context 檢視。

(繼承來源 IViewEngine)
GetAbsolutePath(String, String)

將指定的 pagePath 轉換為絕對,除非 已經是絕對的,否則 pagePath 會相對於 executingFilePath

GetPage(String, String)

取得具有指定 pagePath 之 的頁面, executingFilePath 除非已經是絕對的,否則 pagePath 為 。

GetView(String, String, Boolean)

取得具有指定 viewPath 之 的檢視, executingFilePath 除非 已經是絕對的 ,否則 viewPath 為 。

(繼承來源 IViewEngine)

適用於