PageConventionCollectionExtensions.AllowAnonymousToAreaPage Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Permite o acesso anônimo à página com o nome especificado localizado na área especificada.
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
Parâmetros
- conventions
- PageConventionCollection
O PageConventionCollection a ser configurado.
- areaName
- String
O nome da área.
- pageName
- String
O nome da página, por exemplo, /Users/List
O nome da página é o caminho do arquivo sem extensão, em relação ao diretório raiz de páginas da área especificada.
Por exemplo, o nome da página do arquivo Areas/Identity/Pages/Manage/Accounts.cshtml é /Manage/Accounts
.