Skip to content

Commit

Permalink
SA1601 Partial elements should be documented.
Browse files Browse the repository at this point in the history
Add XML-docs for the ClaimsAuthorizer class
  • Loading branch information
raman-m committed Nov 7, 2024
1 parent 3ed044e commit b513ba8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Ocelot/Authorization/ClaimsAuthorizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

namespace Ocelot.Authorization
{
/// <summary>
/// Authorizer which is implemented using Claims-based authorization.
/// <para>
/// Microsoft Learn: <see href="https://learn.microsoft.com/en-us/aspnet/core/security/authorization/claims?view=aspnetcore-7.0">Claims-based authorization in ASP.NET Core</see>.
/// </para>
/// </summary>
public partial class ClaimsAuthorizer : IClaimsAuthorizer
{
private readonly IClaimsParser _claimsParser;
Expand Down

0 comments on commit b513ba8

Please sign in to comment.