UserManager<TUser>.RemovePasswordAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RemovePasswordAsync(TUser) |
移除使用者的密碼。 |
RemovePasswordAsync(TUser, CancellationToken) |
移除使用者的密碼。 |
RemovePasswordAsync(TUser)
移除使用者的密碼。
public:
virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ RemovePasswordAsync(TUser user);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> RemovePasswordAsync (TUser user);
abstract member RemovePasswordAsync : 'User -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.RemovePasswordAsync : 'User -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function RemovePasswordAsync (user As TUser) As Task(Of IdentityResult)
參數
- user
- TUser
應該移除其密碼的使用者。
傳回
, Task 表示非同步作業,其中包含 IdentityResult 作業的 。
適用於
RemovePasswordAsync(TUser, CancellationToken)
移除使用者的密碼。
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> RemovePasswordAsync (TUser user, System.Threading.CancellationToken cancellationToken = default);
abstract member RemovePasswordAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.RemovePasswordAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function RemovePasswordAsync (user As TUser, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IdentityResult)
參數
- user
- TUser
應該移除其密碼的使用者。
- cancellationToken
- CancellationToken
用於散佈應取消作業通知的 CancellationToken。
傳回
, Task 表示非同步作業,其中包含 IdentityResult 作業的 。