PageConventionCollectionExtensions.AddAreaPageRoute Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the specified route
to the page at the specified pageName
located in the specified
area.
The page can be routed via route
in addition to the default set of path based routes.
All links generated for this page will use the specified route.
public static Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection AddAreaPageRoute (this Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection conventions, string areaName, string pageName, string route);
static member AddAreaPageRoute : Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection * string * string * string -> Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection
<Extension()>
Public Function AddAreaPageRoute (conventions As PageConventionCollection, areaName As String, pageName As String, route As String) As PageConventionCollection
Parameters
- conventions
- PageConventionCollection
- areaName
- String
The area name.
- pageName
- String
The page name e.g. /Users/List
The page name is the path of the file without extension, relative to the pages root directory for the specified area.
e.g. the page name for the file Areas/Identity/Pages/Manage/Accounts.cshtml, is /Manage/Accounts
.
- route
- String
The route to associate with the page.