Skip to content

Commit

Permalink
Fix xmldocs on ID Token Validation internal methods
Browse files Browse the repository at this point in the history
  • Loading branch information
damieng committed Nov 15, 2019
1 parent 0bbe463 commit 7586e73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Auth0.OidcClient.Core/Tokens/IdTokenValidator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private static JwtSecurityToken DecodeToken(string rawIDToken)
/// <param name="required"><see cref="IdTokenRequirements"/> that should be asserted.</param>
/// <param name="token"><see cref="JwtSecurityToken"/> to assert requirements against.</param>
/// <param name="pointInTime"><see cref="DateTime"/> to act as "Now" when asserting time-based claims.</param>
/// <exception cref="IdTokenValidationException">Exception thrown if <paramref name="rawIDToken"/> fails to
/// <exception cref="IdTokenValidationException">Exception thrown if <paramref name="token"/> fails to
/// meet the requirements specified by <paramref name="required"/>.
/// </exception>
private static void AssertTokenClaimsMeetRequirements(IdTokenRequirements required, JwtSecurityToken token, DateTime pointInTime)
Expand Down Expand Up @@ -139,7 +139,7 @@ private static void AssertTokenClaimsMeetRequirements(IdTokenRequirements requir
/// </summary>
/// <param name="claims"><see cref="IEnumerable{Claim}"/>Claims to search the <paramref name="claimType"/> for.</param>
/// <param name="claimType">Type of claim to search the <paramref name="claims"/> for. See <see cref="JwtRegisteredClaimNames"/> for possible names.</param>
/// <returns>A <see cref="long?"/>Containing the <see cref="long"/> value containing the epoch value or <see langword="null"/> if no matching value was found.</returns>
/// <returns>A <see cref="Nullable{Int64}"/> containing the epoch value or <see langword="null"/> if no matching value was found.</returns>
private static long? GetEpoch(IEnumerable<Claim> claims, string claimType)
{
var claim = claims.FirstOrDefault(t => t.Type == claimType);
Expand Down

0 comments on commit 7586e73

Please sign in to comment.