PageConventionCollectionExtensions.AllowAnonymousToAreaPage Method

Definition

Allows anonymous access to the page with the specified name located in the specified area.

public static Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection AllowAnonymousToAreaPage (this Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection conventions, string areaName, string pageName);
static member AllowAnonymousToAreaPage : Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection * string * string -> Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection
<Extension()>
Public Function AllowAnonymousToAreaPage (conventions As PageConventionCollection, areaName As String, pageName As String) As PageConventionCollection

Parameters

conventions
PageConventionCollection

The PageConventionCollection to configure.

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.

Returns

The PageConventionCollection.

Applies to