Clean up doc comments
This commit is contained in:
parent
0f7c123081
commit
7403418d2b
|
|
@ -61,32 +61,32 @@ namespace Microsoft.AspNetCore.Authentication
|
||||||
});
|
});
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used by as the fallback default scheme for all the other defaults.
|
/// Used as the fallback default scheme for all the other defaults.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DefaultScheme { get; set; }
|
public string DefaultScheme { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used by as the default scheme by <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.
|
/// Used as the default scheme by <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DefaultAuthenticateScheme { get; set; }
|
public string DefaultAuthenticateScheme { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used by as the default scheme by <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.
|
/// Used as the default scheme by <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DefaultSignInScheme { get; set; }
|
public string DefaultSignInScheme { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used by as the default scheme by <see cref="IAuthenticationService.SignOutAsync(HttpContext, string, AuthenticationProperties)"/>.
|
/// Used as the default scheme by <see cref="IAuthenticationService.SignOutAsync(HttpContext, string, AuthenticationProperties)"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DefaultSignOutScheme { get; set; }
|
public string DefaultSignOutScheme { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used by as the default scheme by <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.
|
/// Used as the default scheme by <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DefaultChallengeScheme { get; set; }
|
public string DefaultChallengeScheme { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used by as the default scheme by <see cref="IAuthenticationService.ForbidAsync(HttpContext, string, AuthenticationProperties)"/>.
|
/// Used as the default scheme by <see cref="IAuthenticationService.ForbidAsync(HttpContext, string, AuthenticationProperties)"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DefaultForbidScheme { get; set; }
|
public string DefaultForbidScheme { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue