IViewEngine Interface

Defines the contract for a view engine.

Namespace
Microsoft.AspNetCore.Mvc.ViewEngines
Assemblies
  • Microsoft.AspNetCore.Mvc.ViewFeatures

Syntax

public interface IViewEngine
interface Microsoft.AspNetCore.Mvc.ViewEngines.IViewEngine

Methods

FindView(Microsoft.AspNetCore.Mvc.ActionContext, System.String, System.Boolean)

Finds the view with the given <em>viewName</em> using view locations and information from the <em>context</em>.

Arguments:
Return type:

Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult

Returns:

The Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult of locating the view.

ViewEngineResult FindView(ActionContext context, string viewName, bool isMainPage)
GetView(System.String, System.String, System.Boolean)

Gets the view with the given <em>viewPath</em>, relative to <em>executingFilePath</em> unless <em>viewPath</em> is already absolute.

Arguments:
  • executingFilePath (System.String) – The absolute path to the currently-executing view, if any.
  • viewPath (System.String) – The path to the view.
  • isMainPage (System.Boolean) – Determines if the page being found is the main page for an action.
Return type:

Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult

Returns:

The Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult of locating the view.

ViewEngineResult GetView(string executingFilePath, string viewPath, bool isMainPage)