Share via


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.

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