IViewEngine Interface¶
Defines the contract for a view engine.
- Namespace
Microsoft.AspNetCore.Mvc.ViewEngines
- Assemblies
- Microsoft.AspNetCore.Mvc.ViewFeatures
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: - context (Microsoft.AspNetCore.Mvc.ActionContext) – The
Microsoft.AspNetCore.Mvc.ActionContext
. - viewName (System.String) – The name of the view.
- isMainPage (System.Boolean) – Determines if the page being found is the main page for an action.
Return type: Returns: The
Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult
of locating the view.ViewEngineResult FindView(ActionContext context, string viewName, bool isMainPage)
- context (Microsoft.AspNetCore.Mvc.ActionContext) – The
-
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: Returns: The
Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult
of locating the view.ViewEngineResult GetView(string executingFilePath, string viewPath, bool isMainPage)
-