Skip to content

Commit d5e2281

Browse files
Add missing XML documentation
For completeness, add missing XML documentation to the Lichess handler.
1 parent 37adf0a commit d5e2281

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/AspNet.Security.OAuth.Lichess/LichessAuthenticationHandler.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,18 @@
1818

1919
namespace AspNet.Security.OAuth.Lichess
2020
{
21+
/// <summary>
22+
/// Defines a handler for authentication using Lichess.
23+
/// </summary>
2124
public class LichessAuthenticationHandler : OAuthHandler<LichessAuthenticationOptions>
2225
{
26+
/// <summary>
27+
/// Initializes a new instance of the <see cref="LichessAuthenticationHandler"/> class.
28+
/// </summary>
29+
/// <param name="options">The authentication options.</param>
30+
/// <param name="logger">The logger to use.</param>
31+
/// <param name="encoder">The URL encoder to use.</param>
32+
/// <param name="clock">The system clock to use.</param>
2333
public LichessAuthenticationHandler(
2434
[NotNull] IOptionsMonitor<LichessAuthenticationOptions> options,
2535
[NotNull] ILoggerFactory logger,
@@ -29,6 +39,7 @@ public LichessAuthenticationHandler(
2939
{
3040
}
3141

42+
/// <inheritdoc />
3243
protected override async Task<AuthenticationTicket> CreateTicketAsync(
3344
[NotNull] ClaimsIdentity identity,
3445
[NotNull] AuthenticationProperties properties,

0 commit comments

Comments
 (0)