Skip to content

Commit

Permalink
Update comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaytak authored and brentschmaltz committed Jan 3, 2024
1 parent c3700a5 commit 1a5e9b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Microsoft.IdentityModel.Tokens/SecurityTokenDescriptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class SecurityTokenDescriptor

/// <summary>
/// Gets or sets the <see cref="Dictionary{TKey, TValue}"/> which represents the claims that will be used when creating a security token.
/// If both <cref see="Claims"/> and <see cref="Subject"/> are set, the claim values in Subject will be combined with the values
/// If both <see cref="Claims"/> and <see cref="Subject"/> are set, the claim values in Subject will be combined with the values
/// in Claims. The values found in Claims take precedence over those found in Subject, so any duplicate
/// values will be overridden.
/// </summary>
Expand Down Expand Up @@ -90,7 +90,7 @@ public class SecurityTokenDescriptor

/// <summary>
/// Gets or sets the <see cref="ClaimsIdentity"/>.
/// If both <cref see="Claims"/> and <see cref="Subject"/> are set, the claim values in Subject will be combined with the values
/// If both <see cref="Claims"/> and <see cref="Subject"/> are set, the claim values in Subject will be combined with the values
/// in Claims. The values found in Claims take precedence over those found in Subject, so any duplicate
/// values will be overridden.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ public string RoleClaimType
/// Gets or sets a delegate that will be used to validate the signature of the token.
/// </summary>
/// <remarks>
/// If set, this delegate will be called to signature of the token, instead of default processing.
/// If set, this delegate will be called to validate the signature of the token, instead of default processing.
/// </remarks>
public SignatureValidator SignatureValidator { get; set; }

Expand All @@ -720,7 +720,7 @@ public string RoleClaimType
/// the <see cref="BaseConfiguration"/>.
/// </summary>
/// <remarks>
/// If set, this delegate will be called to signature of the token, instead of default processing.
/// If set, this delegate will be called to validate the signature of the token, instead of default processing.
/// </remarks>
public SignatureValidatorUsingConfiguration SignatureValidatorUsingConfiguration { get; set; }

Expand Down

0 comments on commit 1a5e9b4

Please sign in to comment.