Skip to content

Commit 12531dd

Browse files
committed
XML comments fixed
1 parent 27859f6 commit 12531dd

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/AspNetCore.Authentication.Basic/BasicHandler.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ internal class BasicHandler : AuthenticationHandler<BasicOptions>
2626
/// <param name="logger"></param>
2727
/// <param name="encoder"></param>
2828
/// <param name="clock"></param>
29-
/// <param name="basicUserValidationService"></param>
3029
public BasicHandler(IOptionsMonitor<BasicOptions> options, ILoggerFactory logger, UrlEncoder encoder, ISystemClock clock)
3130
: base(options, logger, encoder, clock)
3231
{

src/AspNetCore.Authentication.Basic/BasicOptions.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ namespace AspNetCore.Authentication.Basic
1111
/// </summary>
1212
public class BasicOptions : AuthenticationSchemeOptions
1313
{
14+
/// <summary>
15+
/// Constructor.
16+
/// </summary>
1417
public BasicOptions()
1518
{
1619
Events = new BasicEvents();

src/AspNetCore.Authentication.Basic/Events/BasicEvents.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class BasicEvents
1717
/// <remarks>
1818
/// You must provide a delegate for this property for authentication to occur.
1919
/// In your delegate you should either call context.ValidationSucceeded() which will handle construction of authentication principal from the user details which will be assiged the context.Principal property and call context.Success(),
20-
/// or construct an authentication principal from the user details & attach it to the context.Principal property and finally call context.Success() method.
20+
/// or construct an authentication principal from the user details &amp; attach it to the context.Principal property and finally call context.Success() method.
2121
/// If only context.Principal property set without calling context.Success() method then, Success() method is automaticalled called.
2222
/// </remarks>
2323
public Func<BasicValidateCredentialsContext, Task> OnValidateCredentials { get; set; }

src/AspNetCore.Authentication.Basic/Events/BasicValidateCredentialsContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public BasicValidateCredentialsContext(HttpContext context, AuthenticationScheme
4040
public string Password { get; }
4141

4242
/// <summary>
43-
/// Calling this method will handle construction of authentication principal (<see cref="ClaimsPrincipal">) from the user details
43+
/// Calling this method will handle construction of authentication principal (<see cref="ClaimsPrincipal" />) from the user details
4444
/// which will be assiged to the <see cref="ResultContext{TOptions}.Principal"/> property
4545
/// and <see cref="ResultContext{TOptions}.Success"/> method will also be called.
4646
/// </summary>

0 commit comments

Comments
 (0)