PageConventionCollectionExtensions.AllowAnonymousToAreaPage 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
允许匿名访问位于指定区域中具有指定名称的页面。
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
参数
- conventions
- PageConventionCollection
要配置的 PageConventionCollection。
- areaName
- String
区域名称。
- pageName
- String
页面名称,例如 /Users/List
页面名称是不带扩展名的文件的路径,相对于指定区域的 pages 根目录。
例如,文件 Areas/Identity/Pages/Manage/Accounts.cshtml 的页面名称为 /Manage/Accounts
。