AuthorizationAppBuilderExtensions.UseAuthorization Method

Definition

Adds the AuthorizationMiddleware to the specified IApplicationBuilder, which enables authorization capabilities.

When authorizing a resource that is routed using endpoint routing, this call must appear between the calls to app.UseRouting() and app.UseEndpoints(...) for the middleware to function correctly.

C#
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseAuthorization (this Microsoft.AspNetCore.Builder.IApplicationBuilder app);

Parameters

app
IApplicationBuilder

The IApplicationBuilder to add the middleware to.

Returns

A reference to app after the operation has completed.

Applies to

Product Versions
ASP.NET Core 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0