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
Fix parameter description in GetAuthenticatorKeyAsync (#57834)
* Fix parameter description in GetAuthenticatorKeyAsync
Corrected the parameter description for the `user` parameter in the
`GetAuthenticatorKeyAsync` method of the `IUserAuthenticatorKeyStore<TUser>`
interface. The previous description incorrectly referred to the security
stamp, while the new description accurately refers to the authenticator key.
* Update src/Identity/Extensions.Core/src/IUserAuthenticatorKeyStore.cs
Co-authored-by: Martin Costello <[email protected]>
---------
Co-authored-by: Martin Costello <[email protected]>
Copy file name to clipboardExpand all lines: src/Identity/Extensions.Core/src/IUserAuthenticatorKeyStore.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ public interface IUserAuthenticatorKeyStore<TUser> : IUserStore<TUser> where TUs
24
24
/// <summary>
25
25
/// Get the authenticator key for the specified <paramref name="user" />.
26
26
/// </summary>
27
-
/// <param name="user">The user whose security stamp should be set.</param>
27
+
/// <param name="user">The user whose authenticator key should be retrieved.</param>
28
28
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
29
29
/// <returns>The <see cref="Task"/> that represents the asynchronous operation, containing the security stamp for the specified <paramref name="user"/>.</returns>
0 commit comments