Skip to content

Commit

Permalink
Added missing documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Oct 29, 2021
1 parent 7af3126 commit 96ceb34
Showing 1 changed file with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,17 @@ public static IRequestExecutorBuilder AddAuthorizeDirectiveType(
=> AddAuthorization(builder);

/// <summary>
/// Adds
/// Adds a custom authorization handler.
/// </summary>
/// <param name="builder"></param>
/// <typeparam name="T"></typeparam>
/// <returns></returns>
/// <param name="builder">
/// The <see cref="IRequestExecutorBuilder"/>.
/// </param>
/// <typeparam name="T">
/// The custom authorization handler.
/// </typeparam>
/// <returns>
/// Returns the <see cref="IRequestExecutorBuilder"/> for chaining in more configurations.
/// </returns>
public static IRequestExecutorBuilder AddAuthorizationHandler<T>(
this IRequestExecutorBuilder builder)
where T : class, IAuthorizationHandler
Expand Down

0 comments on commit 96ceb34

Please sign in to comment.