Remove cancellation token overload
This commit is contained in:
parent
b64a32f089
commit
7fbc36c566
|
|
@ -753,13 +753,11 @@ namespace Microsoft.AspNetCore.Identity
|
||||||
/// Removes a user's password.
|
/// Removes a user's password.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="user">The user whose password should be removed.</param>
|
/// <param name="user">The user whose password should be removed.</param>
|
||||||
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
|
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// The <see cref="Task"/> that represents the asynchronous operation, containing the <see cref="IdentityResult"/>
|
/// The <see cref="Task"/> that represents the asynchronous operation, containing the <see cref="IdentityResult"/>
|
||||||
/// of the operation.
|
/// of the operation.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public virtual async Task<IdentityResult> RemovePasswordAsync(TUser user,
|
public virtual async Task<IdentityResult> RemovePasswordAsync(TUser user)
|
||||||
CancellationToken cancellationToken = default(CancellationToken))
|
|
||||||
{
|
{
|
||||||
ThrowIfDisposed();
|
ThrowIfDisposed();
|
||||||
var passwordStore = GetPasswordStore();
|
var passwordStore = GetPasswordStore();
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"OldTypeId": "public class Microsoft.AspNetCore.Identity.UserManager<T0> : System.IDisposable where T0 : class",
|
||||||
|
"OldMemberId": "public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> RemovePasswordAsync(T0 user, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))",
|
||||||
|
"Kind": "Removal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"OldTypeId": "public class Microsoft.AspNetCore.Identity.UserManager<T0> : System.IDisposable where T0 : class",
|
||||||
|
"OldMemberId": "public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> RemovePasswordAsync(T0 user, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))",
|
||||||
|
"Kind": "Removal"
|
||||||
|
}
|
||||||
|
]
|
||||||
Loading…
Reference in New Issue