Skip to content

Commit

Permalink
fixed xml statements
Browse files Browse the repository at this point in the history
  • Loading branch information
brentschmaltz committed Oct 21, 2022
1 parent a996778 commit b7a4fdd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1085,9 +1085,9 @@ protected virtual SecurityKey ResolveTokenDecryptionKey(string token, JsonWebTok
/// <exception cref="ArgumentNullException"><paramref name="token"/> is null or empty.</exception>
/// <exception cref="ArgumentException">'token.Length' is greater than <see cref="TokenHandler.MaximumTokenSizeInBytes"/>.</exception>
/// <remarks><para>If the <paramref name="token"/> is in JWE Compact Serialization format, only the protected header will be deserialized.</para>
/// This method is unable to decrypt the payload. Use <see cref="ValidateToken(string, TokenValidationParameters)"/>to obtain the payload.</remarks>
/// <remarks>The token is NOT validated and no security decisions should be made about the contents.
/// <para>Use <see cref="ValidateToken(string, TokenValidationParameters)"/> or <see cref="ValidateTokenAsync(string, TokenValidationParameters)"/> to ensure the token is acceptable.</para></remarks>
/// This method is unable to decrypt the payload. Use <see cref="ValidateToken(string, TokenValidationParameters)"/>to obtain the payload.
/// <para>The token is NOT validated and no security decisions should be made about the contents.
/// Use <see cref="ValidateToken(string, TokenValidationParameters)"/> or <see cref="ValidateTokenAsync(string, TokenValidationParameters)"/> to ensure the token is acceptable.</para></remarks>
public virtual JsonWebToken ReadJsonWebToken(string token)
{
if (string.IsNullOrEmpty(token))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -755,10 +755,10 @@ private IDictionary<string, object> OutboundClaimTypeTransform(IDictionary<strin
/// <exception cref="ArgumentNullException"><paramref name="token"/> is null or empty.</exception>
/// <exception cref="ArgumentException">'token.Length' is greater than <see cref="TokenHandler.MaximumTokenSizeInBytes"/>.</exception>
/// <exception cref="ArgumentException"><see cref="CanReadToken(string)"/></exception>
/// <remarks><para>If the <paramref name="token"/> is in JWE Compact Serialization format, only the protected header will be deserialized.</para>
/// This method is unable to decrypt the payload. Use <see cref="ValidateToken(string, TokenValidationParameters, out SecurityToken)"/>to obtain the payload.</remarks>
/// <remarks>The token is NOT validated and no security decisions should be made about the contents.
/// <para>Use <see cref="ValidateTokenAsync(string, TokenValidationParameters)"/> to ensure the token is acceptable.</para></remarks>
/// <remarks><para>If the <paramref name="token"/> is in JWE Compact Serialization format, only the protected header will be deserialized.
/// This method is unable to decrypt the payload. Use <see cref="ValidateToken(string, TokenValidationParameters, out SecurityToken)"/>to obtain the payload.</para>
/// <para>The token is NOT validated and no security decisions should be made about the contents.
/// Use <see cref="ValidateTokenAsync(string, TokenValidationParameters)"/> to ensure the token is acceptable.</para></remarks>
public JwtSecurityToken ReadJwtToken(string token)
{
if (string.IsNullOrEmpty(token))
Expand Down

0 comments on commit b7a4fdd

Please sign in to comment.