PageConventionCollectionExtensions.AuthorizeFolder Method

Definition

Overloads

AuthorizeFolder(PageConventionCollection, String)

Requires authorization for all pages under the specified folder.

AuthorizeFolder(PageConventionCollection, String, String)

Requires authorization for all pages under the specified folder.

AuthorizeFolder(PageConventionCollection, String)

Source:
PageConventionCollectionExtensions.cs
Source:
PageConventionCollectionExtensions.cs

Requires authorization for all pages under the specified folder.

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

Parameters

conventions
PageConventionCollection

The PageConventionCollection to configure.

folderPath
String

The folder path.

Returns

The PageConventionCollection.

Applies to

AuthorizeFolder(PageConventionCollection, String, String)

Source:
PageConventionCollectionExtensions.cs
Source:
PageConventionCollectionExtensions.cs

Requires authorization for all pages under the specified folder.

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

Parameters

conventions
PageConventionCollection

The PageConventionCollection to configure.

folderPath
String

The folder path.

policy
String

The authorization policy.

Returns

The PageConventionCollection.

Applies to