PageConventionCollectionExtensions.AuthorizeAreaFolder 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AuthorizeAreaFolder(PageConventionCollection, String, String, String) |
对于指定文件夹下的所有页面,需要具有指定策略的授权。 |
AuthorizeAreaFolder(PageConventionCollection, String, String) |
需要对指定文件夹下的所有页面使用默认策略进行授权。 |
AuthorizeAreaFolder(PageConventionCollection, String, String, String)
对于指定文件夹下的所有页面,需要具有指定策略的授权。
public static Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection AuthorizeAreaFolder (this Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection conventions, string areaName, string folderPath, string policy);
static member AuthorizeAreaFolder : Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection * string * string * string -> Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection
<Extension()>
Public Function AuthorizeAreaFolder (conventions As PageConventionCollection, areaName As String, folderPath As String, policy As String) As PageConventionCollection
参数
- conventions
- PageConventionCollection
要配置的 PageConventionCollection。
- areaName
- String
区域名称。
- folderPath
- String
文件夹路径,例如 /Manage/
文件夹路径是文件夹的路径,相对于指定区域的页根目录。
例如,文件 Areas/Identity/Pages/Manage/Accounts.cshtml 的文件夹路径为 /Manage
。
- policy
- String
授权策略。
返回
适用于
AuthorizeAreaFolder(PageConventionCollection, String, String)
需要对指定文件夹下的所有页面使用默认策略进行授权。
public static Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection AuthorizeAreaFolder (this Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection conventions, string areaName, string folderPath);
static member AuthorizeAreaFolder : Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection * string * string -> Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection
<Extension()>
Public Function AuthorizeAreaFolder (conventions As PageConventionCollection, areaName As String, folderPath As String) As PageConventionCollection
参数
- conventions
- PageConventionCollection
要配置的 PageConventionCollection。
- areaName
- String
区域名称。
- folderPath
- String
文件夹路径,例如 /Manage/
文件夹路径是文件夹的路径,相对于指定区域的页根目录。
例如,文件 Areas/Identity/Pages/Manage/Accounts.cshtml 的文件夹路径为 /Manage
。