UserManager<TUser>.SetLockoutEndDateAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
鎖定使用者,直到指定的結束日期通過為止。 設定過去的結束日期會立即解除鎖定使用者。
public:
virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ SetLockoutEndDateAsync(TUser user, Nullable<DateTimeOffset> lockoutEnd);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> SetLockoutEndDateAsync (TUser user, DateTimeOffset? lockoutEnd);
abstract member SetLockoutEndDateAsync : 'User * Nullable<DateTimeOffset> -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.SetLockoutEndDateAsync : 'User * Nullable<DateTimeOffset> -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function SetLockoutEndDateAsync (user As TUser, lockoutEnd As Nullable(Of DateTimeOffset)) As Task(Of IdentityResult)
參數
- user
- TUser
應設定鎖定日期的使用者。
- lockoutEnd
- Nullable<DateTimeOffset>
之後 DateTimeOffset , user
應該結束鎖定。
傳回
, Task 表示非同步作業,包含 IdentityResult 作業的 。