You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Resolves the signing key used for validating a token's signature.
177
+
/// </summary>
178
+
/// <param name="token">The string representation of the token being validated.</param>
179
+
/// <param name="securityToken">The <see cref="SecurityToken"/> being validated, which may be null.</param>
180
+
/// <param name="kid">The key identifier, which may be null.</param>
181
+
/// <param name="validationParameters">The <see cref="ValidationParameters"/> to be used for validating the token.</param>
182
+
/// <param name="configuration">The <see cref="BaseConfiguration"/> to be used for validating the token.</param>
183
+
/// <param name="callContext">The <see cref="CallContext"/> used for logging.</param>
184
+
/// <returns>The <see cref="SecurityKey"/> used to validate the signature.</returns>
185
+
/// <remarks>If both <see cref="IssuerSigningKeyResolverUsingConfiguration"/> and <see cref="IssuerSigningKeyResolver"/> are set, <see cref="IssuerSigningKeyResolverUsingConfiguration"/> takes priority.</remarks>
@@ -293,12 +294,15 @@ public virtual ClaimsIdentity CreateClaimsIdentity(SecurityToken securityToken,
293
294
/// If both <see cref="IssuerSigningKeyResolverUsingConfiguration"/> and <see cref="IssuerSigningKeyResolver"/> are set, IssuerSigningKeyResolverUsingConfiguration takes
0 commit comments